---
title: "Delete option"
url: "https://earlyaccess.developers.bynder.com/apis/metaproperty-options-1/versions/9b6f896a-c5dd-4f1a-a8e4-591e5ef4f1db/operations/deleteApi1TaxonomyMetapropertiesMetapropertyidOptionsOptionid"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/metaproperty-options-1/versions/9b6f896a-c5dd-4f1a-a8e4-591e5ef4f1db.md

# Delete option

`DELETE` `/api/1/taxonomy/metaproperties/{metapropertyId}/options/{optionId}`

Operation ID: `deleteApi1TaxonomyMetapropertiesMetapropertyidOptionsOptionid`

Delete an option by id

## Path parameters

- `metapropertyId` (string, uuid, required)
- `optionId` (string, uuid, required)

## Responses

- `200`
- `404`

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Metaproperty options
  version: "1.0"
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/1/taxonomy/metaproperties/{metapropertyId}/options/{optionId}:
    delete:
      description: Delete an option by id
      operationId: deleteApi1TaxonomyMetapropertiesMetapropertyidOptionsOptionid
      parameters:
        - in: path
          name: metapropertyId
          required: true
          schema:
            format: uuid
            type: string
        - in: path
          name: optionId
          required: true
          schema:
            format: uuid
            type: string
      responses:
        "200":
          content:
            application/json:
              examples:
                OptionDeleted:
                  summary: Response when the option is deleted
                  value:
                    message: Metaproperty option has been deleted
              schema:
                properties:
                  message:
                    type: string
                required:
                  - message
                title: OptionDeletedOutput
                type: object
          description: ""
        "404":
          content:
            application/json:
              examples:
                OptionNotExisting:
                  summary: Response when the option does not exist
                  value:
                    errorCode: option-not-existing
                    message: Option does not exist
              schema:
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                required:
                  - errorCode
                  - message
                title: OptionNotExistingOutput
                type: object
          description: ""
      summary: Delete option
      tags:
        - Options - New API (Preferred)
security:
  - OAuth2:
      - METAPROPERTYMANAGEMENT
      - METAMANAGEMENT
  - permanentToken:
      - METAPROPERTYMANAGEMENT
      - METAMANAGEMENT
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            METAMANAGEMENT: ""
            METAPROPERTYMANAGEMENT: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            METAMANAGEMENT: ""
            METAPROPERTYMANAGEMENT: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
