Leverage our AI agent to moderate content, analyze sentiment, and foster a thriving online community. Deploy sophisticated forum services as simple, scalable software.
import { forum } from '@services/do';
const newThread = await forum.threads.create({
forumId: 'f-12345',
title: 'How to use the .do SDK?',
content: 'I am new here and would like to learn more about the platform capabilities.',
authorId: 'u-abcde',
tags: ['sdk', 'getting-started', 'typescript']
});
console.log('New thread created:', newThread.id);