{ "opencollection": "1.0.0", "info": { "name": "Nex Developer AI Lists Notifications API", "version": "1.0" }, "items": [ { "info": { "name": "Notifications", "type": "folder" }, "items": [ { "info": { "name": "Get Notification Feed", "type": "http" }, "http": { "method": "GET", "url": "https://app.nex.ai/api/developers/v1/notifications/feed", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of notifications to return (default: 20, max: 50)" }, { "name": "since", "value": "", "type": "query", "description": "Only return notifications after this ISO 8601 timestamp (for incremental polling)" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Returns recent context alerts generated by the server-side notification system. Use the `since` parameter for incremental polling." }, { "info": { "name": "Get Notification Preferences", "type": "http" }, "http": { "method": "GET", "url": "https://app.nex.ai/api/developers/v1/notifications/preferences", "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Returns the current notification preferences including polling frequency, enabled notification types, and digest settings." }, { "info": { "name": "Update Notification Preferences", "type": "http" }, "http": { "method": "PATCH", "url": "https://app.nex.ai/api/developers/v1/notifications/preferences", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Update notification polling frequency, enabled types, or digest settings. All fields are optional." }, { "info": { "name": "List Custom Notification Rules", "type": "http" }, "http": { "method": "GET", "url": "https://app.nex.ai/api/developers/v1/notifications/custom", "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "List all custom AI notification rules configured for the authenticated user." }, { "info": { "name": "Create Custom Notification Rule", "type": "http" }, "http": { "method": "POST", "url": "https://app.nex.ai/api/developers/v1/notifications/custom", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Create a new AI-powered notification rule. Describe what you want to be notified about in natural language." }, { "info": { "name": "Get Custom Notification Rule", "type": "http" }, "http": { "method": "GET", "url": "https://app.nex.ai/api/developers/v1/notifications/custom/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Custom notification rule ID" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Get a specific custom notification rule by ID." }, { "info": { "name": "Delete Custom Notification Rule", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.nex.ai/api/developers/v1/notifications/custom/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Custom notification rule ID" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Delete a custom notification rule. This action cannot be undone." } ] } ], "bundled": true }