action velopayments_instruct_payout_v3 { label: "Instruct Payout" description: "Instruct a payout to be made for the specified payoutId." provider: velopayments method: POST path: "/v3/payouts/{payoutId}" encoding: json input: { type: "object" properties: { fxRateDegredationThresholdPercentage: { type: "number" format: "float" description: "Halt instruction if the FX rates have become worse since the last quote" } payoutId: { type: "string" format: "uuid" } } required: ["payoutId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }