curl --request POST \
--url https://api.example.com/iser/categories/assign \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"categoryIds": "<string>",
"editionId": 123
}
'{
"success": true,
"data": "<unknown>"
}Assign multiple categories to particular iser. The EditionID is optional, as we will derive the primary edition ID from the iser profile if one is not provided here.
curl --request POST \
--url https://api.example.com/iser/categories/assign \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"categoryIds": "<string>",
"editionId": 123
}
'{
"success": true,
"data": "<unknown>"
}