disputes.get
Retrieve detailed information about a specific Ryft dispute using its unique identifier to review case details and status.
Instructions
Get a Ryft dispute by id.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/disputes.ts:49-57 (handler)The handler for 'disputes.get' tool that retrieves a Ryft dispute by ID using the client.
registerTool( 'disputes.get', 'Get a Ryft dispute by id.', disputeTargetSchema.shape, async (args) => { const { id } = disputeTargetSchema.parse(args); return client.get(`/disputes/${id}`); }, );