POST
/
your-callback-endpoint
curl --request POST \
  --url https://dash.betteruseblockchain.com/your-callback-endpoint \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "address": "FykfMwA9WNShzPJbbb9DNXsfgDgS3XZzWiFgrVXfWoPJ",
  "txId": "2rdy3YCZHSwvpWtuDom1d4Jjy5UU9STLxF3ffXau6GToReDkfw8wEgX541fvzvh6btVC5D8iNapcKTXfPsoDBk7A",
  "blockNumber": 110827114,
  "asset": "3gUeeR3BfVhukYJMwtHownRtRkGcf1bvwiV8TbKMZBVz",
  "amount": "1",
  "tokenId": "1",
  "type": "token",
  "mempool": true,
  "counterAddress": "vTEfAhXTmvgFmepgfhzBbRrJ4EtUP9adbMJjpzLsDMk",
  "addressesRiskRatio": [
    {
      "vTEfAhXTmvgFmepgfhzBbRrJ4EtUP9adbMJjpzLsDMk": 0
    },
    {
      "zBbRrJ4EtUP9adbMJjpzLsDMkvTEfAhXTmvgFmepgfh": 100
    }
  ]
}'
{
  "status": "success"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

The payload of the webhook notification sent to your callback endpoint.

The body is of type object.

Response

200
application/json

The callback was received and processed successfully.

The response is of type object.