platformFees.getRefunds
Retrieve refund details for a specific platform fee using the Ryft MCP server. This tool helps track and manage refund transactions associated with platform fees.
Instructions
List refunds for a Ryft platform fee.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/platform-fees.ts:36-44 (handler)The handler implementation for the platformFees.getRefunds tool.
registerTool( 'platformFees.getRefunds', 'List refunds for a Ryft platform fee.', platformFeeTargetSchema.shape, async (args) => { const { id } = platformFeeTargetSchema.parse(args); return client.get(`/platform-fees/${id}/refunds`); }, );