Skip to main content
PUT
/
api
/
Configuration
/
RatingReasons
/
{actionType}
Update Rating Reasons for a given Rating Type.
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
  ]
}
'

Path Parameters

actionType
integer<int32>
required

Body

application/json
reasons
object[] | null
deleteIds
integer<int32>[] | null

Response

200

OK