List Funding Methods

Veem API exposes an endpoint with a list of available funding methods for your account. You will need one of these to send money to vendors/suppliers around the world.

There are four types of Funding Methods to send money:

  • Bank Account

  • Debit Card

  • Credit Card

  • Veem Wallet

GET https://sandbox-api.veem.com/veem/v1.2/funding-methods

Headers

  • X-Request-Id: <identifier_for_this_request>
  • Authorization: Bearer <access_token>

Notes:
X-Request-Id can be any string, but it must be unique for each different transaction you do using the same account. We recommend generating this value as a GUID, and save it for reference. You cannot create two different payments using the same X-Request-Id value, if you try it, you simple get the date for the first payment created using that value.

{
    "accountId": 9493,
    "fundingMethods": [
        {
            "id": 1591,
            "type": "Bank",
            "status": "a"
        },
        {
            "id": 96,
            "type": "Card",
            "status": "a",
            "cardDetails": {
                "cardType": "CREDIT",
                "cardCompany": "Visa",
                "last4Digits": "1111"
            }
        },
        {
            "id": 97,
            "type": "Card",
            "status": "a",
            "cardDetails": {
                "cardType": "DEBIT",
                "cardCompany": "Visa",
                "last4Digits": "5556"
            }
        },
        {
            "id": 58,
            "type": "Wallet",
            "status": "a"
        }
    ]
}

You will need the listed funding methods to send money using the API v1.2, so keep the id and type handy.