Skip to main content
GET
/
orgs
/
{org_id}
/
projects
/
{project_id}
/
notifications
/
rules
List project notification rules
curl --request GET \
  --url https://api.timbal.ai/orgs/{org_id}/projects/{project_id}/notifications/rules \
  --header 'Authorization: Bearer <token>'
{
  "rules": [
    {
      "channels": [
        {
          "config": {},
          "id": 123,
          "type": "email",
          "name": "<string>"
        }
      ],
      "cooldown_seconds": 123,
      "enabled": true,
      "event_type": "org.credits.usage",
      "id": 123,
      "name": "<string>",
      "condition": {}
    }
  ]
}
Rules scoped to this project (for example deployment alerts).

Authorizations

Authorization
string
header
required

Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.

Path Parameters

org_id
string
required
project_id
string
required

Response

List of rules with channels

Wrapper for GET /orgs/{org_id}/projects/{project_id}/notifications/rules.

rules
object[]
required