> ## Documentation Index
> Fetch the complete documentation index at: https://docs.series.hr/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Request

> Delete a time-off request

Permanently delete a time-off request. This action cannot be undone.

## Request

```bash theme={null}
curl -X DELETE "https://api.series.hr/time-off/delete/req-12345" \
  -H "apikey: YOUR_API_KEY"
```

## Parameters

<ParamField path="requestId" type="string" required>
  The unique ID of the time-off request to delete.
</ParamField>

## Response

<ResponseField status={200} name="200">
  ```json theme={null}
  {
    "success": true,
    "data": {
      "message": "Time-off request successfully deleted",
      "RequestId": "req-12345"
    }
  }
  ```
</ResponseField>
