---
title: "Delete option"
url: "https://earlyaccess.developers.bynder.com/apis/metaproperty-options-1/versions/9b6f896a-c5dd-4f1a-a8e4-591e5ef4f1db/paths/api-v4-metaproperties-id--options--optionId/delete"
---

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

# Delete option

`DELETE` `/api/v4/metaproperties/{id}/options/{optionId}`

## Path parameters

- `id` (string, required)
- `optionId` (string, required)

## Responses

- `204` - No Content
- `404` - Meta property option not found

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Metaproperty options
  version: "1.0"
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/v4/metaproperties/{id}/options/{optionId}:
    delete:
      parameters:
        - in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000
            type: string
        - in: path
          name: optionId
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000
            type: string
      responses:
        "204":
          content:
            application/json:
              example:
                message: Meta property option deleted successfully
                statuscode: "204"
          description: No Content
        "404":
          content:
            application/json:
              examples:
                notFound:
                  value:
                    message: Meta property option not found
                    statuscode: "404"
              schema:
                properties:
                  message:
                    example: Meta property option not found
                    type: string
                  statuscode:
                    example: "404"
                    type: string
                type: object
          description: Meta property option not found
      summary: Delete option
      tags:
        - Options - Old API (Please use new API if possible)
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
```
