---
title: "Delete metaproperty options"
url: "https://earlyaccess.developers.bynder.com/apis/asset-management-api-1/versions/b623ec0a-a559-4667-a0ee-28fa2b9cd7ce/paths/api-media-options/delete"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/asset-management-api-1/versions/b623ec0a-a559-4667-a0ee-28fa2b9cd7ce.md

# Delete metaproperty options

`DELETE` `/api/media/options`

## Request body (required)

Content types: `application/json`

## Responses

- `204` - No Content
- `403` - Access denied
- `404` - Not Found

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Asset Management API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/media/options:
    delete:
      requestBody:
        content:
          application/json:
            schema:
              properties:
                asset_id:
                  example: 00000000-0000-0000-0000000000000000
                  type: string
                metaproperty_id:
                  example: 00000000-0000-0000-0000000000000000
                  type: string
                metaproperty_option_ids:
                  items:
                    example: 00000000-0000-0000-0000000000000000
                    type: string
                  type: array
              type: object
        required: true
      responses:
        "204":
          content:
            application/json:
              schema:
                properties:
                  message:
                    example: No Content
                    type: string
                  statuscode:
                    example: 204
                    type: integer
                type: object
          description: No Content
        "403":
          content:
            application/json:
              schema:
                properties:
                  message:
                    example: Access denied
                    type: string
                  statuscode:
                    example: 403
                    type: integer
                type: object
          description: Access denied
        "404":
          content:
            application/json:
              schema:
                properties:
                  message:
                    example: Not Found
                    type: string
                  statuscode:
                    example: 404
                    type: integer
                type: object
          description: Not Found
      security:
        - permanentToken:
            - MEDIAEDIT
        - OAuth2:
            - MEDIAEDIT
      summary: Delete metaproperty options
      tags:
        - Media options
security:
  - permanentToken:
      - MEDIAEDIT
  - OAuth2:
      - MEDIAEDIT
components:
  securitySchemes:
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            ARCHIVEDOWNLOAD: ""
            ARCHIVEMEDIA: ""
            EMARGOMEDIA: ""
            KEYVISUALDOWNLOAD: ""
            MARKPUBLIC: ""
            MEDIAEDIT: ""
            MEDIAREMOVE: ""
            STATISTICS: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            ARCHIVEDOWNLOAD: ""
            ARCHIVEMEDIA: ""
            EMARGOMEDIA: ""
            KEYVISUALDOWNLOAD: ""
            MARKPUBLIC: ""
            MEDIAEDIT: ""
            MEDIAREMOVE: ""
            STATISTICS: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
```
