Account Details

The account details object contains the financial account's account number and routing information.

Properties

  • Name
    account_id
    Type
    string
    Description

    The id of the account the account details belong to.

  • Name
    account_number
    Type
    string
    Description

    The account number.

  • Name
    links
    Type
    object
    Description

    An object containing links to related resources. A link indicates the enrollment supports that type of resource. Not every institution implements all of the capabilities that Teller supports. Your application should reflect on the contents of this object to determine what is supported by the financial institution.

    • Name
      self
      Type
      string
      Description

      A self link to the account details.

    • Name
      account
      Type
      string
      Description

      A link to the account that owns the details.

  • Name
    routing_numbers
    Type
    object
    Description

    An object containing the account details routing numbers.

    • Name
      ach
      Type
      string (nullable)
      Description

      The account's routing number for ACH transactions.

    • Name
      wire
      Type
      string (nullable)
      Description

      The account's wire routing number.

    • Name
      bacs
      Type
      string (nullable)
      Description

      The account's BACS sort code.


GET/accounts/:account_id/details

Get Account Details

Returns the account's details.

Request

curl https://api.teller.io/accounts/acc_oiin624iajrg2mp2ea000/details \
  -u test_token_ky6igyqi3qxa4:

Response

{
  "links" : {
      "account" : "https://api.teller.io/accounts/acc_oiin624iajrg2mp2ea000",
      "self" : "https://api.teller.io/accounts/acc_oiin624iajrg2mp2ea000/details"
  },
  "routing_numbers" : {
      "ach" : "066474405"
  },
  "account_id" : "acc_oiin624iajrg2mp2ea000",
  "account_number" : "142999287346"
}