action velopayments_get_funding_account_v2 { label: "Get Funding Account" description: "Get Funding Account by ID" provider: velopayments method: GET path: "/v2/fundingAccounts/{fundingAccountId}" encoding: json input: { type: "object" properties: { fundingAccountId: { type: "string" format: "uuid" } sensitive: { type: "boolean" } } required: ["fundingAccountId"] additionalProperties: false } output: { 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" } } } }