curl --request POST \
--url https://api.example.com/api/v2/incidents/across-workspaces/bulk-update \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"id": "<string>",
"user": {
"id": "<string>",
"displayName": "<string>",
"email": "<string>"
},
"workspace": "<string>",
"removeAssignee": true,
"comment": "<string>"
}
]
}
'