curl --request POST \
--url https://api.example.com/admin/concat/limited-update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"concatCode": "b6658d49-2145-4ad1-9b60-304482033001",
"isFeatured": true,
"categoryIDs": null
}
'{
"success": true,
"data": "<unknown>"
}Allows admins to perform extremely limited updates to concats such as featuring them. Admins can not update or edit the actual content of a concat.
curl --request POST \
--url https://api.example.com/admin/concat/limited-update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"concatCode": "b6658d49-2145-4ad1-9b60-304482033001",
"isFeatured": true,
"categoryIDs": null
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.