curl --request POST \
--url https://api.example.com/displaymode/slot/styles/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeReleaseID": 123,
"slotID": 123,
"styleTypeCodes": [
"STATICTEXT",
"FONTCOLOR"
]
}
'{
"success": true,
"data": "<unknown>"
}Removes display mode slot style(s) based on the int array of slot style type IDs.
curl --request POST \
--url https://api.example.com/displaymode/slot/styles/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeReleaseID": 123,
"slotID": 123,
"styleTypeCodes": [
"STATICTEXT",
"FONTCOLOR"
]
}
'{
"success": true,
"data": "<unknown>"
}