Skip to main content
GET
/
v1
/
notifications
/
custom
/
{id}
Get Custom Notification Rule
curl --request GET \
  --url https://app.nex.ai/api/developers/v1/notifications/custom/{id} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "prompt": "<string>",
  "is_enabled": true,
  "schedule": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API key for authentication (format: "Bearer YOUR_API_KEY")

Path Parameters

id
string
required

Custom notification rule ID

Response

Custom notification rule details

id
string

Unique rule ID

name
string

Human-readable rule name

prompt
string

The natural language prompt describing the notification condition

is_enabled
boolean

Whether the rule is currently active

schedule
string

Cron-style schedule for rule evaluation

created_at
string<date-time>

When the rule was created

Last modified on March 24, 2026