Accounts

Get an account's bank identifiers

Identifiers come in pairs:

  • A bank identifier, which identifies the bank
  • An account identifier, which identifiers the account at the bank

Identifiers can be:

  • Sort code and account number for domestic UK payments
  • BIC and IBAN for international payments
  • ABA and ACH routing numbers for domestic US payments
get/api/v2/accounts/{accountUid}/identifiers

Path parameters

accountUidstring uuid required
Example:aaaaaaaa-aaaa-4aaa-aaaa-aaaaaaaaaaaa

Account uid

Response

Successful operation

accountIdentifierstring

Identifier to uniquely identify the account at the bank

bankIdentifierstring

Identifier to uniquely identify the bank

ibanstring

International identifier to uniquely identify the account at the bank

bicstring

International identifier to uniquely identify the bank

Example response

{
  "accountIdentifier": "01234567",
  "bankIdentifier": "608371",
  "iban": "GB63SRLG60837101234567",
  "bic": "SRLGGB2L",
  "accountIdentifiers": [
    {
      "identifierType": "SORT_CODE",
      "bankIdentifier": "608371",
      "accountIdentifier": "47675488"
    }
  ]
}