Ledger Enterprise
API Documentation V2
API Documentation V2
  • Introduction
    • Getting Started
    • Overview
  • Guides
    • Authentication
    • Balance Reporting Bot
      • 1. Project setup
      • 2. Connect to revault-api
      • 3. Fetch accounts balances
      • 4. Conclusion
  • reference
    • API reference
      • Users
      • Accounts
        • Transactions
      • Groups
      • Whitelists
      • Policies
      • Entities
      • Requests
        • Generate registration challenge
        • Confirm registration challenge
        • Challenge
        • Approve
        • Reject
      • Auth
        • Token
          • Refresh
      • Permissions
        • Allowed actions
        • Resources
      • Assets
        • Currencies
        • Tokens
      • Tradelink
        • Network
          • Blueprint
    • Specification
Powered by GitBook
On this page
  1. reference
  2. API reference
  3. Accounts

Transactions

PreviousAccountsNextGroups

List account transactions

get
Authorizations
Path parameters
idstringRequired

Id of the target account

Query parameters
cursorstringOptional

Optional cursor to get next pages (based on the next key on query response)

Responses
200
Successful response
application/json
default
Error response
application/json
get
GET /rest/accounts/{id}/transactions HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "next": "text",
  "results": [
    {
      "id": "text",
      "hash": "text",
      "block": {
        "height": "text",
        "time": "text"
      },
      "status": "SUCCESSFUL",
      "confirmations": "text",
      "amount": "text",
      "fee": "text",
      "senders": [
        "text"
      ],
      "recipients": [
        "text"
      ],
      "type": "BITCOIN_LIKE_SEND",
      "note": {
        "title": "text",
        "content": "text"
      }
    }
  ]
}