List Funding Methods
You can use List Funding Methods endpoint to get the full list of available funding methods for your account. You will need one of these funding accounts to send money to vendors/suppliers around the world or receive payments.
There are several types of Funding Methods to send money:
- Bank Account
- Debit Card
- Credit Card
- Veem Wallet
- Virtual Card
- Virtual Bank Account
GET https://sandbox-api.veem.com/veem/v1.2/funding-methods
Headers
Three headers are required to use this endpoint.
Required Headers
Name
Type
Required
Description
Authorization
stringYes
Bearer token (OAuth 2.0) This header holds the bearer token required to use Veem's public API, and belongs to the owner account. Failure to use a valid bearer token will result in a 404 (Not Found) status code in the response. An example of a valid header value is as follows:
Bearer c047594b-082c-4da1-be89-08fe3770f4b3See Get Access Token section to generate your Bearer token
X-Request-Id
stringYes
This is a unique string that identifies the current API request, and should follow the UUID format. Reusing this header without changing the value will result in a 409 (Conflict) status code in the response. An example X-request-id is as follows:
48855846-628d-4177-b071-80332a116f0a
Content-Type
stringYes
The content type of the request. Must be
application/json
Partner Notes:
- A partner account can be configured to make this API request on behalf of their customers. This requires internal configuration for the partner account by Veem. Once the internal configuration is enabled, the API request can be made using partner account bearer token.
onBehalfAccountIdis an optional query string parameter, this needs to be included on the request URL in case of partner making an API request on behalf of their customer. This is the customer Veem accountId, e.g?onBehalfAccountId=457725
{
"accountId": 9493,
"fundingMethods": [
{
"id": 1591,
"type": "Bank",
"status": "a",
"country": "US",
"currency": "USD"
},
{
"id": 96,
"type": "Card",
"status": "a",
"cardDetails": {
"cardType": "CREDIT",
"cardCompany": "Visa",
"last4Digits": "1111"
},
"country": "US",
"currency": "AUD"
},
{
"id": 97,
"type": "Card",
"status": "a",
"cardDetails": {
"cardType": "DEBIT",
"cardCompany": "Visa",
"last4Digits": "5556"
},
"defaultMethod": {
"defaultDebitMethod": true
},
"country": "US",
"currency": "USD"
},
{
"id": 58,
"type": "Wallet",
"status": "a",
"defaultMethod": {
"defaultCreditMethod": true
},
"country": "GB",
"currency": "GBP"
},
{
"id": 55034,
"type": "VirtualCard",
"status": "a",
"country": "US",
"currency": "USD"
}
]
}You will need the listed funding methods to send money using the API v1.2, so keep both the id and type handy.
Updated 6 days ago
