action velopayments_get_funding_accounts_v2 { label: "Get Funding Accounts" description: "Get the funding accounts." provider: velopayments method: GET path: "/v2/fundingAccounts" encoding: json input: { type: "object" properties: { country: { type: "string" } currency: { type: "string" } name: { type: "string" } page: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } payorId: { type: "string" format: "uuid" } sensitive: { type: "boolean" } sort: { type: "string" } type: { type: "string" description: "Funding account type. One of the following values: FBO, WUBS_DECOUPLED, PRIVATE" } } additionalProperties: false } output: { type: "object" description: "List Funding Accounts Response Object" properties: { content: { type: "array" items: { type: "object" properties: { accountName: { type: "string" description: "name on the bank account" } accountNumber: { type: "string" description: "bank account number" } archived: { type: "boolean" description: "A flag for whether the funding account has been archived. Only present in the response if true." } country: { type: "string" description: "ISO 3166-1 2 letter country code (upper case)" } currency: { type: "string" description: "Valid ISO 4217 3 letter currency code. See the ISO specification for details." } id: { type: "string" format: "uuid" description: "Funding Account Id" } name: { type: "string" description: "name of funding account" } payorId: { type: "string" format: "uuid" } routingNumber: { type: "string" description: "bank account routing number" } type: { type: "string" description: "Funding account type. One of the following values: FBO, WUBS_DECOUPLED, PRIVATE" } } } } 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" } } } } } }