---
title: "Retrieve metaproperty options"
url: "https://earlyaccess.developers.bynder.com/apis/product-layer-metaproperties-api-1/versions/2fb2c968-3ea1-4674-8bb7-a5babf8f5934/paths/api-pim-metaproperties-id--options/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/product-layer-metaproperties-api-1/versions/2fb2c968-3ea1-4674-8bb7-a5babf8f5934.md

# Retrieve metaproperty options

`GET` `/api/pim/metaproperties/{id}/options`

Retrieve a paginated list of options for the given metaproperty id.

## Path parameters

- `id` (string, required)

## Query parameters

- `order` (string, optional)
- `page` (integer, optional)
- `limit` (integer, optional)

## Responses

- `200` - Successfully retrieved metaproperty options

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Product Layer Metaproperties API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/pim/metaproperties/{id}/options:
    get:
      description: Retrieve a paginated list of options for the given metaproperty id.
      parameters:
        - in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000-0000000000000000
            type: string
        - in: query
          name: order
          required: false
          schema:
            enum:
              - asc
              - desc
            example: asc
            type: string
        - in: query
          name: page
          required: false
          schema:
            example: 1
            type: integer
        - in: query
          name: limit
          required: false
          schema:
            example: 20
            type: integer
      responses:
        "200":
          content:
            application/json:
              schema:
                items:
                  properties:
                    description:
                      example: Metaproperty option 1 for Product A
                      type: string
                    id:
                      example: 00000000-0000-0000-0000-000000000000
                      type: string
                    label:
                      example: Product A option 1
                      type: string
                    metapropertyid:
                      example: 00000000-0000-0000-0000-000000000000
                      type: string
                    name:
                      example: Product A option 1
                      type: string
                    product_options:
                      items:
                        properties:
                          description:
                            example: Metaproperty option 1 child
                            type: string
                          id:
                            example: 00000000-0000-0000-0000-000000000000
                            type: string
                          label:
                            example: Product A option 1 child
                            type: string
                          metapropertyid:
                            example: 00000000-0000-0000-0000-000000000000
                            type: string
                          name:
                            example: Product A option 1 child
                            type: string
                        type: object
                      type: array
                  type: object
                type: array
          description: Successfully retrieved metaproperty options
      security:
        - OAuth2:
            - METAPROPERTYMANAGEMENT
        - permanentToken:
            - METAPROPERTYMANAGEMENT
      summary: Retrieve metaproperty options
      tags:
        - Options
security:
  - OAuth2:
      - METAPROPERTYMANAGEMENT
  - permanentToken:
      - METAPROPERTYMANAGEMENT
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            METAPROPERTYMANAGEMENT: ""
            metaproperty.view: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            METAPROPERTYMANAGEMENT: ""
            metaproperty.view: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
