Skip to main content
DELETE
/
api
/
automation-integration
Delete Automation Integration
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"
}

Authorizations

Authorization
string
header
required

Enter your JWT token. You can obtain this from your User Intuition dashboard.

Body

application/json
hook_url
string<uri>
required

The webhook URL to delete

assistant_id
string
required

The assistant ID associated with the webhook

Response

Automation integration deleted successfully

success
boolean
Example:

true

message
string
Example:

"Automation integration deleted successfully"