action velopayments_create_funding_request_v2 { 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 (202 - accepted, 400 - invalid request body, 404 - source account not found)." provider: velopayments method: POST path: "/v2/sourceAccounts/{sourceAccountId}/fundingRequest" encoding: json input: { type: "object" properties: { amount: { type: "integer" format: "int64" description: "Amount to fund, decimal implied" } sourceAccountId: { type: "string" format: "uuid" } } required: ["amount", "sourceAccountId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }