---
title: Remove a resource requirement
description: Deletes the requirement row.
api_method: DELETE
api_path: "/v1/services/{serviceId}/resource-requirements/{requirementId}"
canonical_url: https://wiblo.app/docs/developers/api/resources/remove-service-resource-requirement
last_updated: 2026-07-28T17:56:11+02:00
md_url: https://wiblo.app/docs/developers/api/resources/remove-service-resource-requirement.md
---

# Remove a resource requirement

`DELETE /v1/services/{serviceId}/resource-requirements/{requirementId}`

Deletes the requirement row. Owner/admin only. Per-user rate-limited at 60/60s.

## Path parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `serviceId` | `string` | Yes |  |
| `requirementId` | `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/services/3f8a2b9c-51d4-4e0b-9c6a-7d2e8f1a4b5c/resource-requirements/f1d7a3c9-5e8b-4a1f-9c6d-2b8e4f7a1c3d \
  -X DELETE \
  -H "Authorization: Bearer $WIBLO_TOKEN" \
  -H "X-Wiblo-Workspace: $WIBLO_WORKSPACE_ID"
```

**TypeScript**

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

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

const { data, error } = await removeServiceResourceRequirement({
  client: sdk,
  path: { serviceId: "3f8a2b9c-51d4-4e0b-9c6a-7d2e8f1a4b5c", requirementId: "f1d7a3c9-5e8b-4a1f-9c6d-2b8e4f7a1c3d" },
  headers: { "X-Wiblo-Workspace": "..." },
})
```

## Responses

**`204`** — Requirement removed.

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

**`403`** — The actor is a plain member; owner or admin is required (`ADMIN_REQUIRED`). Returns `ApiErrorEnvelope`.

**`404`** — No requirement with this id on this service (`REQUIREMENT_NOT_FOUND`), or the service collapsed (`SERVICE_NOT_FOUND`). Returns `ApiErrorEnvelope`.

**`422`** — 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`.
