For the complete documentation index, see llms.txt. This page is also available as Markdown.

Notification State

Use to manage notification state.

Deprecated

Get notification state

get

Get notification state

Authorizations
AuthorizationstringRequired

Bearer authentication

Responses
200

Notification state

application/json
get/api/v1/notification-state
GET /api/v1/notification-state HTTP/1.1
Host: app.run.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "email": {
    "enabled": true
  },
  "slack": {
    "enabled": true
  }
}
Deprecated

Update notification state

patch

Update tenant notifications state

Authorizations
AuthorizationstringRequired

Bearer authentication

Body
Responses
200

Notification Channel config

application/json
patch/api/v1/notification-state
PATCH /api/v1/notification-state HTTP/1.1
Host: app.run.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 51

{
  "email": {
    "enabled": true
  },
  "slack": {
    "enabled": true
  }
}
{
  "email": {
    "enabled": true
  },
  "slack": {
    "enabled": true
  }
}

Last updated