addDisputeComment
client.updateRequests.addDisputeComment(id: string, disputeId: string, data: AddDisputeCommentRequest): Promise<unknown>
Add a comment to a dispute
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | |
disputeId | string | Yes | |
data | AddDisputeCommentRequest | Yes |
Returns
Promise<unknown>
Example
import { CodeBoltClient } from '@codebolt/clientsdk';
const client = new CodeBoltClient();
const result = await client.updateRequests.addDisputeComment('id', 'disputeId', /* AddDisputeCommentRequest */);
console.log(result);