GET
/
accounts
/
{accountId}
curl --request GET \
  --url https://api.bridge.com.do/accounts/{accountId} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Access-Token: <x-access-token>'
{
  "account": {
    "id": "acc_zP2oiEAvu7LnuUVc",
    "connectionId": "con_JNhdJbLyi55gZAUW",
    "type": "depository",
    "name": "<string>",
    "lastFour": "1234",
    "balance": {
      "current": 123,
      "available": 123,
      "limit": 123
    },
    "currency": "DOP",
    "lastTransactionRefresh": "txr_01J8XGKZP8K9V7J552EPPD89HM"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Access-Token
string
required

Path Parameters

accountId
string
required

Response

200
application/json
account
object
required