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

# Delete Availability

> Delete a Novacal availability schedule and learn what happens to the event types that use it.

## What happens to your event types

Event types that use the deleted schedule move to your default schedule. They keep working, but they follow the hours of that default schedule from then on.

If you delete the default schedule itself, another one of your schedules becomes the default.

## Limits

* You cannot delete your only schedule. The request returns `400`.
* You can only delete schedules on your own account. Another account's schedule returns `403 access_denied`.

A successful delete returns `204` with no content.


## OpenAPI

````yaml DELETE /v1/availabilities/{id}
openapi: 3.1.0
info:
  title: Events API
  description: Public API for managing event types
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.novacal.io
security:
  - bearerAuth: []
paths:
  /v1/availabilities/{id}:
    delete:
      description: >-
        Deletes an availability schedule. Event types that use it move to your
        default schedule. You cannot delete your only schedule.
      parameters:
        - name: id
          in: path
          description: ID of the availability schedule to delete
          required: true
          schema:
            type: integer
      responses:
        '204':
          description: Availability deleted successfully (no content)
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````