# Delete a label from an app.

Endpoint: DELETE /v1/apps/{id}/labels
Version: v1
Security: x-api-key

## Security:

  - `x-api-key` (unknown)
    apiKey in header x-api-key

## Path parameters:

  - `id` (string, required)
    Unique identifier for the app

## Request body:

  - `application/json` (unknown)
    Delete a label from an app.

## Request fields (application/json):

  - `label` (string, required)
    The label to delete from the app.
    Example: personal-use

## Response 200:

  - `200` (unknown)
    OK. Returns all labels still associated with the app after the label is deleted.

## Response 200 fields (application/json):

  - `labels` (array, required)
    The labels associated with the app.
    Example: ["other-label"]

## Response 400:

  - `400` (unknown)
    Invalid input

## Response 404:

  - `404` (unknown)
    The app with the given ID is not found or the given label is not associated with the app.

