# Create customer level
You can create a new customer level.
POST
/point-customer-level/
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 POST 'https://<your_app_subdomain>.user.com/api/public/point-customer-level/' \
--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": 1, "user_attribute": "attr_int"}'
# Response
{
"id": 2,
"name": "string",
"min_threshold": 0,
"max_threshold": 0,
"perks": {},
"point_campaign": 1,
"user_attribute": "attr_int"
}