leasing

Lease transactions

Get lease transactions info.

post/leasing/info

Request body

idsstring[]

Lease IDs base58 encoded

Response

successful operation

idstring required
originTransactionIdstring required
senderstring required
recipientstring required
amountinteger required

Leased Waves amount

heightinteger required
status'active' | 'canceled' | 'expired' required
  • active: lease is active;
  • canceled: lease was cancelled by transaction;
  • expired: lease has expired
cancelHeightinteger
cancelTransactionIdstring

Example response

[
  {
    "id": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
    "originTransactionId": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p",
    "sender": "3P274YB5qseSE9DTTL3bpSjosZrYBPDpJ8k",
    "recipient": "3P274YB5qseSE9DTTL3bpSjosZrYBPDpJ8k",
    "height": 1610000,
    "cancelHeight": 1610000,
    "cancelTransactionId": "DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p"
  }
]

Changes