Get status definitions for Invoice and payout
Invoice statuses:
id
name
is final status
description
0, 6
Waiting
false
Initial status. Waiting for money transfer.
1
Pending confirm
false
Invoice accepted payment, waiting for transaction confirmation in blockchain network.
2
Unpaid
true
Expired, the invoice was not paid.
3
Successful
true
The invoice was successfully paid.
4
Rejected
true
An error occurred on the pay processing invoice
5
Underpaid
false
Partially paid. The system will wait till the client sends the rest amount to wallet
Payout statuses:
id
name
is final status
description
0
Waiting
false
Initial status.
1
Successful
true
The payout was successfully processed.
2
Rejected
true
An error occurred on the pay processing payout.
3, 4, 5, 8
Processing
false
Processing payout.
6
Unpaid
true
Expired, the payout was not paid.
7
Cancelled
false
Canceled payout.
POST
https://app.thedex.cloud/api/v1/info/statuses
Headers
X-EX-APIKEY*
String
Your API key
X-EX-PAYLOAD*
String
Body to base64
X-EX-SIGNATURE*
String
Encrypted body with the secret key
Request Body (Empty JSON)
Request curl:
Response JSON attributes:
"invoice"
object array
Invoice status values
"payout"
object array
Payout status values
"invoice.id", "payout.id"
Integer
Usually used for response JSON attribute "status"
"invoice.name", "payout.name"
String
Usually used for response JSON attribute "statusName"
Last updated