Skip to main content
PATCH
/
notifications
/
preferences
Update notification preferences
curl --request PATCH \
  --url https://api.mobilerun.ai/notifications/preferences \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "mutedTypes": [
    "workflow.run.running",
    "task.run.running"
  ]
}
'
{
  "data": {
    "mutedTypes": [
      "workflow.run.running",
      "task.run.running"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer token via Authorization header

Body

application/json
mutedTypes
string[]
required
Maximum array length: 200
Required string length: 1 - 256
Example:
["workflow.run.running", "task.run.running"]

Response

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

data
object
required