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

# Delete Schedule

> This endpoint deletes a schedule

### Body

<ParamField body="id" type="string">
  This is the id of the schedule.
</ParamField>

### Response

<ResponseField name="id" type="string">
  This is the id of the schedule.
</ResponseField>

<ResponseField name="type" type="string">
  This is the type of the schedule.
</ResponseField>

<ResponseField name="name" type="string">
  This is the name of the schedule.
</ResponseField>

<ResponseField name="description" type="string">
  This is the description of the schedule.
</ResponseField>

<ResponseField name="created_at" type="string">
  This is the created\_at of the schedule.
</ResponseField>

<ResponseField name="updated_at" type="string">
  This is the updated\_at of the schedule.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --location --request DELETE 'https://api.stateset.com/v1/schedules' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Token <token>' \
  --data-raw '{
      "id": "2438cf38-4004-41d3-8c90-131735ff7d00"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
      "id": "2438cf38-4004-41d3-8c90-131735ff7d00"
  }
  ```
</ResponseExample>
