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