curl --request PUT \
--url https://api.example.com/api/Configuration/RatingReasons/{actionType} \
--header 'Content-Type: application/json' \
--data '
{
"reasons": [
{
"id": 123,
"value": "<string>",
"actionType": 123
}
],
"deleteIds": [
123
]
}
'curl --request PUT \
--url https://api.example.com/api/Configuration/RatingReasons/{actionType} \
--header 'Content-Type: application/json' \
--data '
{
"reasons": [
{
"id": 123,
"value": "<string>",
"actionType": 123
}
],
"deleteIds": [
123
]
}
'Was this page helpful?