action velopayments_deschedule_payout { label: "Deschedule a payout" description: "Remove the schedule for a scheduled payout" provider: velopayments method: DELETE path: "/v3/payouts/{payoutId}/schedule" encoding: json input: { type: "object" properties: { payoutId: { type: "string" format: "uuid" } } required: ["payoutId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }