action velopayments_get_funding_by_id_v1 { label: "Get Funding" description: "Get Funding by Id" provider: velopayments method: GET path: "/v1/fundings/{fundingId}" encoding: json input: { type: "object" properties: { fundingId: { type: "string" format: "uuid" } } required: ["fundingId"] additionalProperties: false } output: { type: "object" required: ["allocationDate", "amount", "currency", "fundingAccountType", "fundingId", "payorId", "status"] properties: { allocationDate: { type: "string" format: "date-time" } allocationType: { type: "string" description: "Funding Allocation Type. One of the following values: AUTOMATIC, MANUAL" } amount: { type: "integer" format: "int64" } currency: { type: "string" description: "Valid ISO 4217 3 letter currency code. See the ISO specification for details." } detectedFundingRef: { type: "string" } fundingAccountType: { type: "string" description: "Funding Account Type. One of the following values: FBO, WUBS_DECOUPLED, PRIVATE" } fundingId: { type: "string" format: "uuid" } hiddenDate: { type: "string" format: "date-time" } payorId: { type: "string" format: "uuid" } physicalAccountName: { type: "string" } reason: { type: "string" } sourceAccountId: { type: "string" format: "uuid" } status: { type: "string" description: "Current status of the funding. One of the follwing values: PENDING, UNALLOCATED, ALLOCATED, HIDDEN, RETURNED, RETURNING, BULK_RETURN, OTHER" } text: { type: "string" } } } }