---
title: "Delete a dependency"
url: "https://earlyaccess.developers.bynder.com/apis/dependencies-for-metaproperties-and-options-1/versions/93f6af18-64b3-4b53-b2d7-016f8c7b9b97/paths/api-v4-metaproperties-id--options--optionId--dependencies--dependencyId/delete"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/dependencies-for-metaproperties-and-options-1/versions/93f6af18-64b3-4b53-b2d7-016f8c7b9b97.md

# Delete a dependency

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

Delete a dependency from a metaproperty option.

## Path parameters

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

## Responses

- `204` - No Content
- `404` - Not Found

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Dependencies for Metaproperties and Options
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/v4/metaproperties/{id}/options/{optionId}/dependencies/{dependencyId}:
    delete:
      description: Delete a dependency from a metaproperty option.
      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
        - in: path
          name: dependencyId
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000
            type: string
      responses:
        "204":
          description: No Content
        "404":
          content:
            application/json:
              examples:
                example-unknown-dependency-option:
                  value:
                    message: Unknown dependency option
                    statuscode: 404
                example-unknown-metaproperty:
                  value:
                    message: Unknown metaproperty
                    statuscode: 404
                example-unknown-metaproperty-option:
                  value:
                    message: Unknown metaproperty option
                    statuscode: 404
              schema:
                properties:
                  message:
                    example: Unknown metaproperty
                    type: string
                  statuscode:
                    example: "404"
                    type: string
                type: object
          description: Not Found
      summary: Delete a dependency
      tags:
        - Option dependency (Please use new Automations 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
```
