Static Wallets List
Request Body
Name
Type
Description
{
"result": integer, // The result code indicates the success or failure of the request.
"message": string, // A message providing additional information about the result.
"data": [
{
"trackId": string, // The unique identifier of each payment session of the OxaPay payment gateway, which can be used to query the payment status and report requests (if the request is successful).
"address": string, // The static address.
"network": string, // The blockchain network associated with the cryptocurrency.
"callbackUrl": string, // The URL where payment information will be sent. Use this to receive notifications about the payment status.
"email": string, // The specified email
"orderId": string, // The specified orderId
"description": string, // Additional information or description related to the static address.
"date": string // The timestamp of the static address generation in Unix time format.
}
],
"meta": {
"size": integer, // The number of static addresses returned in the current page.
"page": integer, // The current page number of the result set.
"pages": integer, // The total number of pages available based on the number of records and page size.
"total": integer // The total number of static addresses available for the specified criteria.
}
}
Example codes
Last updated