delete
https://api.explorium.ai/v1/businesses/events/enrollments
Delete events enrollments records
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Endpoint: DELETE /v1/businesses/events/enrollments
DELETE /v1/businesses/events/enrollmentsDescription
The Delete Business Events Enrollment endpoint allows you to cancel an active event monitoring configuration. This is useful when you no longer need to track certain businesses or when a monitoring strategy needs to be reconfigured.
How It Works
Input: Specify the enrollment_id you wish to cancel.
Processing: The system removes the enrollment configuration.
Output: A confirmation of successful deletion.
Query Parameters
| Field | Type | Description |
|---|---|---|
| enrollment_id | String | The unique identifier of the enrollment to delete |
Example Request (cURL)
curl -X DELETE \
"https://api.explorium.ai/v1/businesses/events/enrollments" \
-H "API_KEY: your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"enrollment_id": "en_7b429a01"
}'Example Response
{
"status": "success"
}