GET
/
accounts
/
{accountId}
/
transactions
curl --request GET \
  --url https://api.bridge.com.do/accounts/{accountId}/transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Access-Token: <x-access-token>'
{
  "transactions": [
    {
      "id": "txn_ckB4a8Ly6PojhwoT",
      "accountId": "acc_zP2oiEAvu7LnuUVc",
      "amount": 123,
      "date": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "reference": "<string>",
      "status": "pending",
      "transactionRefresh": "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

Identificador de la cuenta que desea buscar transacciones.

Query Parameters

refreshedSince
string

Filtrar transacciones que hayan sido actualizadas o creadas luego del cursor de actualización. Por ejemplo, txr_01J8XGKZP8K9V7J552EPPD89HM.

date
object

Filtrar transacciones por su fecha.

Response

200
application/json
transactions
object[]
required