Categories
Categories are determined by the main interests your organization covers within its content. Subscribers will select Categories they are interested in and not interested in when they personalize their Cerkl profile via the Welcome Email they will receive upon subscription. Cerkl will also suggest new Categories based upon the interests of your Audience and the keywords our AI will compare your Content with.
You can add Categories to your Stories, Events, and Needs, allowing you to direct your Content towards the Subscribers most likely to engage with it.
Adding New Categories
If you would like to add a new Category, make a
$ curl --request POST 'api.cerkl.com/v3/category' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {ACCESS_TOKEN}' \
--data-raw '{
"template": {
"version": "3.0",
"data": [
{
"description": "Engineering"
}
]
}
}'
Now you have a new Category your organization's communicators can add to your Cerkl Content!
Getting Categories
Categories can be retrieved like all other Cerkl objects by using a
$ curl --request GET 'api.cerkl.com/v3/category' \
--header 'Authorization: Bearer {ACCESS_TOKEN}'
In order to retrieve a specific Category, you can use the
$ curl --request GET 'api.cerkl.com/v3/category/554' \
--header 'Authorization: Bearer {ACCESS_TOKEN}'
Deleting Categories
Categories can be deleted using the
$ curl --request DELETE 'api.cerkl.com/v3/category/554' \
--header 'Authorization: Bearer {ACCESS_TOKEN}'