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

# Delete Doctor Schedule

> Remove the doctor's schedule entirely — the doctor stops offering availability

Deletes the schedule document for the doctor. Availability caches are
invalidated immediately, so slot queries reflect the change on the next
request. Requires **Manage** permission on the Appointments module.

## Path Parameters

<ParamField path="doctorId" type="string" required>The doctor's user ID</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.nevatal.com/api/v1/appointments/doctors/schedule/66dc441b8208f63a0269eecf" \
    -H "Authorization: Bearer nvtl_your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": null,
    "message": "Horario del doctor eliminado exitosamente"
  }
  ```
</ResponseExample>
