TypeScript Type
Related Endpoints
POST /comment/createPOST /comment
Comment task data returned by the comments API
interface Comment {
id: string;
accountId: string;
postUrl: string;
commentText: string;
status: 'scheduled' | 'pending' | 'verifying' | 'completed' | 'failed';
commentUrl?: string | null;
error?: string | null;
createdAt?: string;
completedAt?: string | null;
}
POST /comment/createPOST /comment