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

CampoTipoDescripciónObligatorioEjemplo
auth_uuidstringThe authorization UUID."01992d22-420f-7549-ba33-4fcf72954f48"
api_keystringThe 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
}

Did this page help you?