disputes.accept
Accept a Ryft dispute to resolve payment conflicts by acknowledging the dispute claim through the Ryft MCP server.
Instructions
Accept a Ryft dispute.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/disputes.ts:59-67 (handler)The implementation of the disputes.accept tool, which accepts a dispute ID as input and sends a POST request to the Ryft API.
registerTool( 'disputes.accept', 'Accept a Ryft dispute.', disputeTargetSchema.shape, async (args) => { const { id } = disputeTargetSchema.parse(args); return client.post(`/disputes/${id}/accept`, {}); }, );