Skip to main content
Glama

payoutMethods.delete

Remove a payout method from a Ryft account to manage payment options and maintain accurate financial records.

Instructions

Delete a Ryft payout method.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountIdYes
payoutMethodIdYes

Implementation Reference

  • Tool registration and handler implementation for payoutMethods.delete.
      registerTool(
        'payoutMethods.delete',
        'Delete a Ryft payout method.',
        payoutMethodTargetSchema.shape,
        async (args) => {
          const { accountId, payoutMethodId } = payoutMethodTargetSchema.parse(args);
          return client.delete(`/accounts/${accountId}/payout-methods/${payoutMethodId}`);
        },
      );
    }
  • Input schema for payoutMethods.delete.
    const payoutMethodTargetSchema = z.object({
      accountId: z.string().min(1),
      payoutMethodId: z.string().min(1),
    });

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