GET
/
v1
/
transactions
/
{transactionId}
curl --request GET \
  --url https://client-api.dev.finhost.io/v1/transactions/{transactionId} \
  --header 'Authorization: Bearer <token>'
[
  {
    "accountId": "<string>",
    "amlId": "<string>",
    "id": "<string>",
    "amlScore": "<string>",
    "amlStatus": "<string>",
    "amount": "<string>",
    "charge": {
      "total": "<string>",
      "fee": "<string>",
      "percentage": "<string>",
      "flat": "<string>",
      "calculator": "<string>",
      "contractId": "<string>",
      "amount": "<string>",
      "currency": "<string>",
      "revenueAccount": "<string>"
    },
    "createdAt": "2023-11-07T05:31:56Z",
    "direction": "<string>",
    "extAccountId": "<string>",
    "extId": "<string>",
    "inTransactionId": "<string>",
    "outTransactionId": "<string>",
    "paymentMethod": "<string>",
    "provider": "<string>",
    "recipient": {
      "name": "<string>",
      "surname": "<string>",
      "bicSwift": "<string>",
      "iban": "<string>",
      "type": "individual",
      "ukAccountNumber": "<string>",
      "ukSortCode": "<string>",
      "bankName": "<string>",
      "street": "<string>",
      "houseNumber": "<string>",
      "refinement": "<string>",
      "city": "<string>",
      "region": "<string>",
      "country": "<string>",
      "postCode": "<string>",
      "reference": "<string>",
      "email": "<string>"
    },
    "sender": {
      "name": "<string>",
      "surname": "<string>",
      "bicSwift": "<string>",
      "iban": "<string>",
      "type": "individual",
      "ukAccountNumber": "<string>",
      "ukSortCode": "<string>",
      "bankName": "<string>",
      "street": "<string>",
      "houseNumber": "<string>",
      "refinement": "<string>",
      "city": "<string>",
      "region": "<string>",
      "country": "<string>",
      "postCode": "<string>",
      "reference": "<string>",
      "email": "<string>"
    },
    "status": "<string>",
    "updatedAt": "2023-11-07T05:31:56Z",
    "fee": true
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

transactionId
string
required

Transaction id

Response

200
application/json
200 response

The response is of type object[].