Skip to main content
DELETE
/
v1
/
deployments
/
{deploymentId}
/
notifications
/
{id}
/
recipients
Remove notification recipients
curl --request DELETE \
  --url https://{tenant}.cubecloud.dev/api/v1/deployments/{deploymentId}/notifications/{id}/recipients \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "recipients": [
    {
      "id": 123,
      "embedTenantName": "<string>"
    }
  ]
}
'

Authorizations

Authorization
string
header
required

API key authentication. Send Authorization: Api-Key <YOUR_API_KEY>.

Path Parameters

deploymentId
integer
required

Numeric id of the deployment that owns the notification.

id
integer
required

Numeric id of the notification (scheduled run).

Body

application/json

RemoveNotificationRecipientsInput

recipients
object[]
required

Recipients to unsubscribe (1–1000 per request)

Required array length: 1 - 1000 elements

Response

Successful response