---
title: "Retrieve global option dependencies"
url: "https://earlyaccess.developers.bynder.com/apis/dependencies-for-metaproperties-and-options-1/versions/93f6af18-64b3-4b53-b2d7-016f8c7b9b97/paths/api-v4-metaproperties-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 global option dependencies

`GET` `/api/v4/metaproperties/options/dependencies`

Retrieve all metaproperty option dependencies globally.

## Responses

- `200` - A list of global option dependencies.

## 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/options/dependencies:
    get:
      description: Retrieve all metaproperty option dependencies globally.
      responses:
        "200":
          content:
            application/json:
              examples:
                example1:
                  value:
                    00000000-0000-0000-0000000000000000:
                      00000000-0000-0000-0000000000000000:
                        00000000-0000-0000-0000000000000000:
                          - 00000000-0000-0000-0000000000000000
                          - 00000000-0000-0000-0000000000000001
                          - 00000000-0000-0000-0000000000000002
                    00000000-0000-0000-0000000000000001:
                      00000000-0000-0000-0000000000000000:
                        ungrouped:
                          - 00000000-0000-0000-0000000000000000
                          - 00000000-0000-0000-0000000000000001
              schema:
                additionalProperties:
                  additionalProperties:
                    additionalProperties:
                      items:
                        example: 00000000-0000-0000-0000000000000000
                        type: string
                      type: array
                    type: object
                  type: object
                type: object
          description: A list of global option dependencies.
      summary: Retrieve global option dependencies
      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
```
