---
title: "Retrieve option dependencies for a metaproperty"
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-dependencies/get"
---

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

# Retrieve option dependencies for a metaproperty

`GET` `/api/v4/metaproperties/{id}/options/dependencies`

Retrieve all metaproperty option dependencies for a specific metaproperty.

## Path parameters

- `id` (string, required)

## Responses

- `200` - A list of metaproperty option dependencies.
- `404` - Unknown metaproperty

## 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/dependencies:
    get:
      description: Retrieve all metaproperty option dependencies for a specific
        metaproperty.
      parameters:
        - in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000
            type: string
      responses:
        "200":
          content:
            application/json:
              examples:
                example1:
                  value:
                    00000000-0000-0000-0000000000000000:
                      00000000-0000-0000-0000000000000000:
                        - 00000000-0000-0000-0000000000000000
                        - 00000000-0000-0000-0000000000000001
                        - 00000000-0000-0000-0000000000000002
                      ungrouped:
                        - 00000000-0000-0000-0000000000000000
              schema:
                additionalProperties:
                  additionalProperties:
                    items:
                      example: 00000000-0000-0000-0000000000000000
                      type: string
                    type: array
                  type: object
                type: object
          description: A list of metaproperty option dependencies.
        "404":
          content:
            application/json:
              schema:
                properties:
                  message:
                    example: Unknown metaproperty
                    type: string
                  statuscode:
                    example: "404"
                    type: string
                type: object
          description: Unknown metaproperty
      summary: Retrieve option dependencies for a metaproperty
      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
```
