List of transactions for a specific account holder.

GET /account_holders/{id}/account/{account_id}/transactions

Not yet implemented.

Path parameters

  • id string Required

    Resource ID

  • account_id string Required

    Account ID

Query parameters

  • page integer

    Pagination page

  • asset_id string

    Internal ID of asset

Responses

  • 200

    OK

    Hide response attributes Show response attributes array[object]
    • id string
    • account_id string
    • asset_id string
    • tx_hash string
    • amount number
    • reference string
    • destination string
    • confirmed_at string
    • failed_at string
  • 401

    API key is missing or invalid.

  • 404

    Requested resource was not found.

  • 5XX

    Unexpected server error. Technical team is always notified when server error occurs, however if the issue is persitent, please reach out with a support request.

GET /account_holders/{id}/account/{account_id}/transactions
curl \
 -X GET https://custody.digitalassets-1754.eu/api/v1/account_holders/{id}/account/{account_id}/transactions \
 -H "X-API-Key: $API_KEY"
Response examples (200)
[
  {
    "id": "string",
    "account_id": "string",
    "asset_id": "string",
    "tx_hash": "string",
    "amount": 42.0,
    "reference": "string",
    "destination": "string",
    "confirmed_at": "string",
    "failed_at": "string"
  }
]
Response examples (200)
[
  {
    "id": "string",
    "account_id": "string",
    "asset_id": "string",
    "tx_hash": "string",
    "amount": 42.0,
    "reference": "string",
    "destination": "string",
    "confirmed_at": "string",
    "failed_at": "string"
  }
]