AgeCategory
Create an age category
Use this call to create a new age category. The age ranges for categories must not overlap each other and the allowed values span from 0 to 17. <br>You must have at least one of these scopes: 'settings.manage, setup.manage'.
post/settings/v1/age-categories
Headers
Idempotency-Keystring
Unique key for safely retrying requests without accidentally performing the same operation twice. We'll always send back the same response for requests made with the same key, and keys can't be reused with different request parameters. Keys expire after 24 hours.
Request body
Example request
{
"code": "BABY",
"propertyId": "MUC",
"name": {
"en": "Baby",
"de": "Kind"
},
"minAge": 0,
"maxAge": 2
}Response
Creation of the new age category was successful.
Example response
{
"id": "MUC-BABY"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.