Skip to main content
Glama

disputes.addEvidence

Add text or file evidence to support a Ryft payment dispute case. Submit supporting documentation to strengthen your dispute resolution process.

Instructions

Add evidence to a Ryft dispute.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
textNo
filesNo

Implementation Reference

  • Registration and implementation of the 'disputes.addEvidence' tool handler.
    registerTool(
      'disputes.addEvidence',
      'Add evidence to a Ryft dispute.',
      addDisputeEvidenceSchema.shape,
      async (args) => {
        const parsed = addDisputeEvidenceSchema.parse(args);
        const { id, ...body } = parsed;
        return client.patch(`/disputes/${id}/evidence`, body);
      },
    );
  • Input validation schema for 'disputes.addEvidence'.
    const addDisputeEvidenceSchema = z.object({
      id: z.string().min(1),
      text: disputeEvidenceTextSchema.optional(),
      files: disputeEvidenceFilesSchema.optional(),
    });

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bkawk/ryft-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server