Delete an automation integration (webhook).
This removes the mapping between the assistant and webhook URL. Call data will no longer be sent to this webhook.
cURL
curl --request DELETE \ --url https://api.userintuition.ai/api/automation-integration \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "hook_url": "https://your-server.com/webhook/user-intuition", "assistant_id": "550e8400-e29b-41d4-a716-446655440000" } '
{ "success": true, "message": "Automation integration deleted successfully" }
Enter your JWT token. You can obtain this from your User Intuition dashboard.
The webhook URL to delete
The assistant ID associated with the webhook
Automation integration deleted successfully
true
"Automation integration deleted successfully"