action velopayments_get_fundings_v1 { label: "V1 Get Fundings for Payor" description: "Deprecated (use /v4/paymentaudit/fundings)" provider: velopayments method: GET path: "/v1/paymentaudit/fundings" encoding: json input: { type: "object" properties: { page: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } payorId: { type: "string" format: "uuid" } sort: { type: "string" } } required: ["payorId"] additionalProperties: false } output: { type: "object" description: "List Users Response Object" properties: { content: { type: "array" items: { type: "object" properties: { amount: { type: "number" format: "double" description: "The amount funded" } currency: { type: "string" description: "The currency of the funding" } dateTime: { type: "string" format: "date-time" } events: { type: "array" items: { type: "object" properties: { eventDateTime: { type: "string" format: "date-time" } eventId: { type: "string" format: "uuid" } fundingEventType: { type: "string" description: "Funding event type. One of the following values: PAYOR_FUNDING_DETECTED, PAYOR_FUNDING_REQUESTED, PAYOR_FUNDING_RETURN_RECEIVED, FUNDING_RETURN_DETECTED, PAYOR_FUNDING_REQUEST_SUBMITTED, PAYOR_FUNDING_ENTRY_DETAIL_RECEIVED, FUNDING_DEALLOCATED" } principal: { type: "string" } } } } fundingAccountName: { type: "string" } fundingType: { type: "string" description: "Funding type. One of the following values: ACH, WIRE, EMBEDDED, BANK_TRANSFER" } sourceAccountName: { type: "string" } status: { type: "string" description: "Status of the funding. One of the following values: PENDING, FAILED, CREDIT, DEBIT" } topupType: { type: "string" description: "Type of top up. One of the following values: AUTOMATIC, MANUAL" } } } } links: { type: "array" items: { properties: { href: { type: "string" } rel: { type: "string" } } } } page: { properties: { numberOfElements: { type: "integer" } page: { type: "integer" } pageSize: { type: "integer" } totalElements: { type: "integer" } totalPages: { type: "integer" } } } } } }