# Get customer levels

You can return all of your customer levels.

GET /point-customer-level/

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl --location --request GET 'https://<your_app_subdomain>.user.com/api/public/point-customer-level/' \
--header 'accept: application/json' \
--header 'Authorization: Token <your_64_char_api_key>' \
--header 'Accept: */*; version=2'

# Response

{
  "count": 1,
  "next": null,
  "previous": null,
  "results": [
    {
      "id": 1,
      "name": "string",
      "min_threshold": 0,
      "max_threshold": 0,
      "perks": {},
      "point_campaign": 1,
      "user_attribute": 1
    }
  ]
}