API reference
Submit Data

Submit data to avail using JSON payload

Request

  • Path: /user/submit_data
  • Method type: POST
  • Headers: Authorization: Bearer <token>, Content-Type: application/json

Params

  • data: Stringified payload.
  • token: The token corresponding to which you want to make the payment.

Example request

curl -X POST "https://api.example.com/user/submit_data" \
     -H "Authorization: Bearer YOUR_TOKEN" \
     -H "Content-Type: application/json" \
     -d '{
           "data": "Test",
           "token": "ethereum"
         }'