action velopayments_schedule_for_payout { label: "Schedule a payout" description: "
Schedule a payout for auto-instruction in the future\nor update existing payout schedule if the payout has been scheduled before.
\n" provider: velopayments method: POST path: "/v3/payouts/{payoutId}/schedule" encoding: json input: { type: "object" properties: { notificationsEnabled: { type: "boolean" description: "Flag to indicate whether to receive notifications when scheduled payout is processed" } payoutId: { type: "string" format: "uuid" } scheduledFor: { type: "string" format: "date-time" description: "UTC timestamp for instructing the payout. Format is ISO-8601." } } required: ["notificationsEnabled", "payoutId", "scheduledFor"] additionalProperties: false } output: { type: "object" additionalProperties: true } }