Delete
DELETE endpoint for deleting a process.
/customer/process
Endpoint:
DELETE {url}/customer/process
🔐 Authentication
No prior authentication required; the request is validated using the auth_uuid and api_key in the request body.
📥 Request Body
Content-Type: application/json
| Campo | Tipo | Descripción | Obligatorio | Ejemplo |
|---|---|---|---|---|
auth_uuid | string | The authorization UUID. | ✅ | "01992d22-420f-7549-ba33-4fcf72954f48" |
api_key | string | The customer’s API Key. | ✅ | "01992d22-420f-7549-ba33-4fcf72954f48" |
Example Request
{
"auth_uuid": "UUID",
"api_key": "API_KEY"
}📤 Responses
✅ 200 - OK
Description: Returns whether the customer process was deleted successfully.
Example Response:
{
"success": true
}❌ 401 - Unauthorized
Description: The client is not authorized or provided invalid credentials.
Example Response:
{
"internal_code": 401,
"message": "Not authorized"
}💥 500 - Internal Server Error
Description: Unexpected error while deleting the customer process.
Example Response:
{
"success": false
}Updated about 1 month ago
Did this page help you?
