Retrieval of transaction details

GET /api/v1/accounts/{account_resource_id}/transactions/{transaction_resource_id}/details

Headers

  • X-Request-ID string Required

    Correlation header to be set in a request and retrieved in the relevant response

Path parameters

Responses

  • HalTransactionDetails

    Hide response attributes Show response attributes object
    • details array Required

      Details

GET /api/v1/accounts/{account_resource_id}/transactions/{transaction_resource_id}/details
curl \
 -X GET https://iban.nash.io/api/v1/accounts/212f9431-f1f0-4808-b3bc-3303d8db91d3/transactions/transaction1/details \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "X-Request-ID: string"
Response examples (200)
{
  "_links": {
    "transactions": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/transactions"
    }
  },
  "details": [
    "detail 1",
    "detail 2"
  ]
}
Response examples (200)
{
  "_links": {
    "transactions": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/transactions"
    }
  },
  "details": [
    "detail 1",
    "detail 2"
  ]
}