Skip to content
Last updated

Configure and test webhook/email notifications for sync events.

Get notification config

GEThttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/connectors/notifications

Returns the notification configuration for the workspace.

Path Parameters

organization_id string required

The unique identifier of the organization (format: org_*).


Update notification config

PATCHhttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/connectors/notifications

Set webhook or email notification rules for sync events.

Request Body

notifications array required

Array of notification rules (webhook URL, email, event types, etc.).


Test notification delivery

POSThttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/connectors/notifications/test

Send a test notification to verify delivery.

Request Body

notification_type string required

Type to test (e.g., webhook, email).

url string optional

Webhook URL to test.


Returns

A notification config object containing a notifications array.

cURL
curl "https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/connectors/notifications" \
  -H "Authorization: Bearer $ACCESS_TOKEN"