---
title: "Remove a dependency option from a group"
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-group--groupId---dependencyId/delete"
---

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

# Remove a dependency option from a group

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

Remove a dependency option from a specific dependency group for a metaproperty option.

## Path parameters

- `id` (string, required) - The id of the metaproperty the (metaproperty) option belongs to.
- `optionId` (string, required) - The id of the (metaproperty) option the dependency group belongs to.
- `groupId` (string, required) - The id of the dependency group you’d like to remove a dependency from.
- `dependencyId` (string, required) - The id of the dependency (metaproperty option) you’d like to remove from the dependency group.

## 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/group/{groupId}/{dependencyId}:
    delete:
      description: Remove a dependency option from a specific dependency group for a
        metaproperty option.
      parameters:
        - description: The id of the metaproperty the (metaproperty) option belongs to.
          in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000
            type: string
        - description: The id of the (metaproperty) option the dependency group belongs to.
          in: path
          name: optionId
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000
            type: string
        - description: The id of the dependency group you’d like to remove a dependency
            from.
          in: path
          name: groupId
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000
            type: string
        - description: The id of the dependency (metaproperty option) you’d like to remove
            from the dependency group.
          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-group:
                  value:
                    message: Unknown group
                    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: Remove a dependency option from a group
      tags:
        - Option dependency group (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
```
