---
title: Remove a date-override row
description: Deletes a single OVERRIDE row.
api_method: DELETE
api_path: "/v1/schedules/{scheduleId}/availability/{availabilityId}"
canonical_url: https://wiblo.app/docs/developers/api/schedules/remove-schedule-override
last_updated: 2026-07-28T17:56:11+02:00
md_url: https://wiblo.app/docs/developers/api/schedules/remove-schedule-override.md
---

# Remove a date-override row

`DELETE /v1/schedules/{scheduleId}/availability/{availabilityId}`

Deletes a single OVERRIDE row. Weekly rows are managed wholesale through the PUT endpoint and answer 422 `NOT_DATE_OVERRIDE` here (old-wiblo guard). Per-user rate-limited at 60/60s.

## Path parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `scheduleId` | `string` | Yes |  |
| `availabilityId` | `string` | Yes |  |

## Headers

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `X-Wiblo-Workspace` | `string` | Yes | Workspace id the call is scoped to. The actor must hold an active membership in it; a foreign or unknown id collapses onto 404 WORKSPACE_NOT_FOUND. |

## Request

**curl**

```bash
curl https://api.wiblo.app/v1/schedules/e6a91c4d-2b7f-4a3e-8d5c-1f9b3e7a5c2d/availability/a9e35d7c-4f2b-4e8a-9c6d-5b1e8a3f7d2c \
  -X DELETE \
  -H "Authorization: Bearer $WIBLO_TOKEN" \
  -H "X-Wiblo-Workspace: $WIBLO_WORKSPACE_ID"
```

**TypeScript**

```ts
import { createSdk, removeScheduleOverride } from "@workspace/sdk"

const sdk = createSdk({ baseUrl: "https://api.wiblo.app" })

const { data, error } = await removeScheduleOverride({
  client: sdk,
  path: { scheduleId: "e6a91c4d-2b7f-4a3e-8d5c-1f9b3e7a5c2d", availabilityId: "a9e35d7c-4f2b-4e8a-9c6d-5b1e8a3f7d2c" },
  headers: { "X-Wiblo-Workspace": "..." },
})
```

## Responses

**`204`** — Override row removed.

**`401`** — No valid session cookie or `wbl_*` bearer was present. Returns `ApiErrorEnvelope`.

**`403`** — A plain member touched another member's schedule (`SELF_EDIT_ONLY`) or a service/resource schedule (`ADMIN_REQUIRED`). Returns `ApiErrorEnvelope`.

**`404`** — No availability row with this id on this schedule (`AVAILABILITY_NOT_FOUND`), or the schedule collapsed (`SCHEDULE_NOT_FOUND`). Returns `ApiErrorEnvelope`.

**`422`** — The row is a weekly rule, not an override (`NOT_DATE_OVERRIDE`), or a path param failed UUID validation (`INVALID_PARAMS`). Returns `ApiErrorEnvelope`.

**`429`** — Rate limit exceeded. The body's `error.code` is `RATE_LIMITED` and `error.details.retry_after` is the same number of seconds as the `Retry-After` header. Returns `ApiErrorEnvelope`.
