curl --request POST \
--url https://api.example.com/public/categories/featured \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"publicSessionToken": "<string>",
"languageID": 1,
"editionID": 1,
"page": 1,
"pagesize": 10
}
'{
"success": true,
"data": "<unknown>"
}Gets all featured categories by language and edition. Pass in a null edition ID to include featured categories across all editions.
curl --request POST \
--url https://api.example.com/public/categories/featured \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"publicSessionToken": "<string>",
"languageID": 1,
"editionID": 1,
"page": 1,
"pagesize": 10
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.