Skip to main content
GET
/
bonus-types
Get all active bonus types
curl --request GET \
  --url https://mock-api.cevro.ai/v1/bonus-types \
  --header 'Authorization: Bearer <token>'
{
  "bonus_types": [
    {
      "id": "<string>",
      "name": "<string>",
      "code": "<string>",
      "description": "<string>",
      "benefit_type": "<string>",
      "amount": 123,
      "wager_requirement": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API Bearer token. For this demo, any non-empty string is accepted.

Query Parameters

active_only
boolean
default:true

Filter to show only active bonus types

Response

200 - application/json

List of bonus types

bonus_types
object[]