Refresh transaction

Used to refresh transactions that are not answered at an address so that message notifications can be retriggered

Request Method: POST

Request Path: /user/refresh

Query parameters:application/json

Field name Field description Example value Required
client_id client_id 1000001 yes

Request parameters:application/json

Request data
{
    "coin_type": "Integer", // Chain type
    "address": "String", // Withdrawal address
}

Chain type declaration

Sample request data
{
    "coin_type": 195,
    "address": "TXr2noFm76YmM4MESAvqMaEr65rdLDQ7mY"
}

Response data

Response Example
{
    "code": 200,
    "message": "Success",
    "data": null
}