delete https://api.explorium.ai/v1/prospects/events/enrollments
Delete events enrollments records
Endpoint: DELETE /v1/prospects/events/enrollments
DELETE /v1/prospects/events/enrollments
Description
The Delete Prospect Events Enrollment endpoint allows you to cancel an active prospect monitoring configuration. This is useful when you no longer need to track certain individuals 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/prospects/events/enrollments" \
-H "API_KEY: your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"enrollment_id": "en_8d52c3f1"
}'
Example Response
{
"status": "success"
}