cURL
curl --request PATCH \ --url https://api.example.com/api/agents/{agent_uid}/notifications \ --header 'Content-Type: application/json' \ --data ' { "notification_config": {} } '
Update or clear the Slack notification configuration for an agent
null
true
digest
{ "notification_config": { "slack_channel_id": "C0123456789", "events": { "action_taken": true, "approval_required": true, "outcome": true, "error": true, "digest": false } } }
{ "notification_config": null }
{ "status": "success", "status_code": 200, "message": "Notification config updated", "data": { "notification_config": { "slack_channel_id": "C0123456789", "events": { "action_taken": true, "approval_required": true, "outcome": true, "error": true, "digest": false } } } }
422
/invite @Exante