GET
/
accounts
/
{accountId}
/
transactions
/
{transactionId}
curl --request GET \
  --url https://api.bridge.com.do/accounts/{accountId}/transactions/{transactionId} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Access-Token: <x-access-token>'
{
  "transaction": {
    "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 de la transacción.

transactionId
string
required

Identificador de la transacción a buscar.

Response

200
application/json
transaction
object
required