Retrieval of an account transaction set

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

Headers

  • X-Request-ID string Required

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

Path parameters

Responses

  • HalTransactions

    Hide response attributes Show response attributes object
    • transactions array[object] Required

      One balance of user account

      Hide transactions attributes Show transactions attributes array[object]
GET /api/v1/accounts/{account_resource_id}/transactions
curl \
 -X GET https://iban.nash.io/api/v1/accounts/212f9431-f1f0-4808-b3bc-3303d8db91d3/transactions \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "X-Request-ID: string"
Response examples (200)
{
  "_links": {
    "balances": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/balances"
    },
    "overdrafts": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/overdrafts"
    },
    "self": {
      "href": "/v1/accounts"
    }
  },
  "transactions": [
    {
      "credit_debit_indicator": "DBIT",
      "details": [
        "detail 1",
        "detail 2"
      ],
      "resource_id": "transaction1",
      "status": "BOOK",
      "transaction_amount": {
        "amount": 10.35,
        "currency": "EUR"
      }
    }
  ]
}
Response examples (200)
{
  "_links": {
    "self": {
      "href": "/v1/accounts"
    },
    "balances": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/balances"
    },
    "overdrafts": {
      "href": "/v1/accounts/3e16aaee-eddf-4161-a9ef-b2c2e697ce40/overdrafts"
    }
  },
  "transactions": [
    {
      "status": "BOOK",
      "details": [
        "detail 1",
        "detail 2"
      ],
      "resource_id": "transaction1",
      "transaction_amount": {
        "amount": 10.35,
        "currency": "EUR"
      },
      "credit_debit_indicator": "DBIT"
    }
  ]
}