v1

latestOpenAPI 3.1.02026-07-22154213404.8 KB
Notifications

Update notification preferences

Replaces your set of muted event types with the supplied list. Any unknown or non-notifiable types are dropped, and the response returns the muted types that were actually stored.

patch/notifications/preferences

Request body

mutedTypesstring[] required

Example request

{
  "mutedTypes": [
    "workflow.run.running",
    "task.run.running"
  ]
}

Response

Stored muted event types (unknown/non-notifiable types dropped)

Example response

{
  "data": {
    "mutedTypes": [
      "workflow.run.running",
      "task.run.running"
    ]
  }
}