# Update customer level

You can update a specific customer level.

PATCH /point-customer-level/:id/

Attributes Type Required Description
name string yes A customer level name.
min_threshold integer yes A minimum number of points to be in a specific customer level.
max_threshold integer yes A maximum number of points to be in a specific customer level.
perks object yes An object with additional user's benefits, e.g. coupon or a discout.
point_campaign integer yes A unique identifier for the point campaign which is given by User.com
user_attribute string no A standardized name for the user attribute (e.g. "My attribute" is standardized to "my_attribute"). Attribute has to be an integer type.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl --location --request PATCH 'https://<your_app_subdomain>.user.com/api/public/point-customer-level/1/' \
--header 'accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <your_64_char_api_key>' \
--header 'Accept: */*; version=2' \
--data-raw '{  "name": "string",  "min_threshold": 0,  "max_threshold": 0,  "perks": {},  "point_campaign": 0,  "user_attribute": 0}'

# Response

{
  "id": 1,
  "name": "string",
  "min_threshold": 0,
  "max_threshold": 1,
  "perks": {},
  "point_campaign": 1,
  "user_attribute": 1
}