Authentication API

Authenticate for the apis access_token

API Endpoint

POST /client/authenticate


Request Headers:

Content-Type: application/json

Request Body:

{
    "username" : "<email>",
    "secretKey": "<your_key>",
    "isAPI": true
}

curl 'https://apis.xpay.stream/client/authenticate' \
  -H 'Content-Type: application/json' \
  --data-raw '{"username":"<your_email>","secretKey":"<your_key>", "isAPI": "true" }'

Last updated