Create user payout request

POST /v1/client/redeem-rewards

Create User Payout Request allows to create a payout request for the user.

application/json

Body Required

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
    • data object

      Additional properties are allowed.

      Hide data attribute Show data attribute object
  • Too many requests in a short period of time

POST /v1/client/redeem-rewards
curl \
 --request POST https://api.bitlabs.ai/v1/client/redeem-rewards \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"category_id":"Amazon","tier_id":"5"}'
Request examples
{
  "category_id": "Amazon",
  "tier_id": "5"
}
Response examples (200)
{
  "data": {
    "balance": "string"
  }
}