---
title: "Retrieve options by ids"
url: "https://earlyaccess.developers.bynder.com/apis/metaproperty-options-1/versions/9b6f896a-c5dd-4f1a-a8e4-591e5ef4f1db/paths/api-v4-metaproperties-options/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/metaproperty-options-1/versions/9b6f896a-c5dd-4f1a-a8e4-591e5ef4f1db.md

# Retrieve options by ids

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

## Query parameters

- `ids` (string, required)

## Responses

- `200` - A list of options
- `400` - Invalid request

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Metaproperty options
  version: "1.0"
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/v4/metaproperties/options:
    get:
      parameters:
        - in: query
          name: ids
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000,00000000-0000-0000-0000000000000000
            type: string
      responses:
        "200":
          content:
            application/json:
              examples:
                example1:
                  value:
                    - active: 1
                      date: 2017-02-15T14:54:58+00:00
                      displayLabel: Yellow
                      id: 00000000-0000-0000-0000000000000000
                      label: Yellow
                      labels:
                        en_US: Yellow
                        nl_NL: Geel
                      name: yellow
                    - active: 1
                      date: 2017-02-15T15:50:55+00:00
                      displayLabel: Red
                      id: 00000000-0000-0000-0000000000000000
                      label: Red
                      labels:
                        en_US: Red
                        nl_NL: Rood
                      name: red
          description: A list of options
        "400":
          content:
            application/json:
              examples:
                invalidId:
                  value:
                    message: Invalid metaproperty option id sent
                    statuscode: "400"
                noData:
                  value:
                    message: No data sent
                    statuscode: "400"
          description: Invalid request
      summary: Retrieve options by ids
      tags:
        - Options - Old API (Please use new 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
```
