Pular para o conteúdo principal
GET
/
client
/
orders
/
{id}
/
tracking
Rastrear envio de criptomoedas
curl --request GET \
  --url https://api.pixusglobal.com/client/orders/{id}/tracking \
  --header 'Authorization: Bearer <token>'
{
  "orderId": "<string>",
  "settlementStatus": "pending",
  "expectedAmount": 123,
  "receivedAmount": 123,
  "withdrawnAmount": 123,
  "withdrawal": {
    "type": "fiat",
    "status": "<string>",
    "transactionId": "<string>",
    "token": "USDT",
    "network": "tron",
    "fromAddress": "<string>",
    "toAddress": "<string>",
    "amount": 123,
    "blockNumber": "<string>",
    "finishedAt": "2023-11-07T05:31:56Z"
  }
}

Autorizações

Authorization
string
header
obrigatório

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Parâmetros de caminho

id
string<uuid>
obrigatório

Resposta

Informações de rastreamento

orderId
string
settlementStatus
enum<string>
Opções disponíveis:
pending,
partial,
paid,
withdrawn,
settled
expectedAmount
number
receivedAmount
number
withdrawnAmount
number
withdrawal
object