Skip to main content
GET
/
v1
/
deployments
/
{deploymentId}
/
notifications
List scheduled notifications
curl --request GET \
  --url https://{tenant}.cubecloud.dev/api/v1/deployments/{deploymentId}/notifications \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "cronExpression": "<string>",
      "dashboardId": 123,
      "deploymentId": 123,
      "humanReadableSchedule": "<string>",
      "id": 123,
      "isEnabled": true,
      "notificationEnabled": true,
      "notificationFormat": "<string>",
      "timezone": "<string>"
    }
  ],
  "pageInfo": {
    "hasNextPage": true,
    "hasPreviousPage": true,
    "endCursor": "<string>",
    "startCursor": "<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.

Query Parameters

dashboardId
integer

Optional filter: only return notifications for this dashboard id.

Required range: x >= 1
first
integer

Page size for cursor pagination (default 100, max 200).

Required range: 1 <= x <= 200
after
string

Opaque cursor for the next page; pass the previous response's pageInfo.endCursor.

Response

200 - application/json
items
object[]
required
pageInfo
object