action velopayments_create_funding_request_v3 { label: "Create Funding Request" description: "

Instruct a funding request to transfer funds from the payor’s funding bank to the payor’s balance held within Velo

\n" provider: velopayments method: POST path: "/v3/sourceAccounts/{sourceAccountId}/fundingRequest" encoding: json input: { type: "object" properties: { amount: { type: "integer" format: "int64" description: "Amount to fund in minor units" } fundingAccountId: { type: "string" format: "uuid" description: "The funding account id" } sourceAccountId: { type: "string" format: "uuid" } } required: ["amount", "fundingAccountId", "sourceAccountId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }