Meria API
  • Quick start
  • Masternodes
    • List masternodes
    • Get a masternode
  • Hardwares
    • List machines
    • Get a bob
    • Get an asic
  • Clouds
    • List cloud contracts
    • Get a cloud contract
  • Staking
    • List staking contracts
    • Get a staking contract
  • LENDING
    • List lending contracts
    • Get a lending contract
  • Wallets
    • List wallets
    • Get a wallet
  • Wallet addresses
    • List addresses
    • List addresses for currency
    • Get an address
  • Operations
    • List operations
    • Get an operation
Powered by GitBook
On this page

Was this helpful?

  1. Operations

Get an operation

Get an operation

GET https://api.meria.com/v1/operations/:id

This endpoint allows to get an operation (withdrawal, exchange, debit or credit).

Path Parameters

Name
Type
Description

id

integer

ID of the operation.

Headers

Name
Type
Description

API-KEY

string

Authentication token

{
    "success": true,
    "data": {
        "id": 5412,
        "type": "withdraw",
        "status": "paid",
        "date": 1544977587,
        "sourceCurrencyCode": "ETC",
        "sourceAmount": 1,
        "destinationCurrencyCode": "ETC",
        "destinationAmount": 0,
        "destinationAddress": "0x........................",
        "memo": null
    }
}
{
    "success": false,
    "error": {
        "code": 404,
        "message": "RESSOURCE_NOT_FOUND"
    }
}

PreviousList operations

Last updated 2 years ago

Was this helpful?