---
title: "Retrieve specific metaproperty"
url: "https://earlyaccess.developers.bynder.com/apis/workflow-metaproperties-api-1/versions/f9d00bab-ec16-4bf8-9afa-f610ed6d8ba4/paths/api-workflow-metaproperties-id/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/workflow-metaproperties-api-1/versions/f9d00bab-ec16-4bf8-9afa-f610ed6d8ba4.md

# Retrieve specific metaproperty

`GET` `/api/workflow/metaproperties/{id}`

## Path parameters

- `id` (string, required)

## Responses

- `200` - Metaproperty object

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Workflow Metaproperties API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}
paths:
  /api/workflow/metaproperties/{id}:
    get:
      parameters:
        - in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000-000000000000
            type: string
      responses:
        "200":
          content:
            application/json:
              examples:
                example-1:
                  value:
                    ID: 00000000-0000-0000-0000-000000000000
                    assetbank_metaproperty: null
                    created_by:
                      ID: 00000000-0000-0000-0000-000000000000
                      fullName: User1
                    dateCreated: 2017-10-27T16:31:52+00:00
                    default: true
                    dependency: null
                    dependencyValue: null
                    description: ""
                    entity: job
                    export: "false"
                    exportName: ""
                    label: Holiday Type
                    options:
                      - ID: 00000000-0000-0000-0000-000000000000
                        created_by:
                          ID: 00000000-0000-0000-0000-000000000000
                          fullName: User1
                        dateCreated: 2017-10-27T16:31:52+00:00
                        default: true
                        label: Beach
                        metapropertyID: 00000000-0000-0000-0000-000000000000
                        position: 1
                      - ID: 00000000-0000-0000-0000-000000000000
                        created_by:
                          ID: 00000000-0000-0000-0000-000000000000
                          fullName: User1
                        dateCreated: 2017-10-27T16:32:16+00:00
                        default: false
                        label: Sightseeing
                        metapropertyID: 00000000-0000-0000-0000-000000000000
                        position: 2
                      - ID: 00000000-0000-0000-0000-000000000000
                        created_by:
                          ID: 00000000-0000-0000-0000-000000000000
                          fullName: User1
                        dateCreated: 2017-10-27T16:32:16+00:00
                        default: false
                        label: Wintersport
                        metapropertyID: 00000000-0000-0000-0000-000000000000
                        position: 3
                      - ID: 00000000-0000-0000-0000-000000000000
                        created_by:
                          ID: 00000000-0000-0000-0000-000000000000
                          fullName: User1
                        dateCreated: 2017-10-27T16:32:16+00:00
                        default: false
                        label: Nature
                        metapropertyID: 00000000-0000-0000-0000-000000000000
                        position: 4
                    position: 12
                    removed_by: null
                    required: false
                    short_name: JOB-9
                    type: select
              schema:
                properties:
                  ID:
                    example: 00000000-0000-0000-0000-000000000000
                    type: string
                  assetbank_metaproperty:
                    example: null
                    type: string
                  created_by:
                    properties:
                      ID:
                        example: 00000000-0000-0000-0000-000000000000
                        type: string
                      fullName:
                        example: User1
                        type: string
                    type: object
                  dateCreated:
                    example: 2017-10-27T16:31:52+00:00
                    type: string
                  default:
                    example: true
                    type: boolean
                  dependency:
                    example: null
                    type: string
                  dependencyValue:
                    example: null
                    type: string
                  description:
                    example: ""
                    type: string
                  entity:
                    enum:
                      - job
                      - campaign
                    example: job
                    type: string
                  export:
                    example: "false"
                    type: string
                  exportName:
                    example: ""
                    type: string
                  label:
                    example: Holiday Type
                    type: string
                  options:
                    items:
                      properties:
                        ID:
                          example: 00000000-0000-0000-0000-000000000000
                          type: string
                        created_by:
                          properties:
                            ID:
                              example: 00000000-0000-0000-0000-000000000000
                              type: string
                            fullName:
                              example: User1
                              type: string
                          type: object
                        dateCreated:
                          example: 2017-10-27T16:31:52+00:00
                          type: string
                        default:
                          example: true
                          type: boolean
                        label:
                          example: Beach
                          type: string
                        metapropertyID:
                          example: 00000000-0000-0000-0000-000000000000
                          type: string
                        position:
                          example: 1
                          type: number
                      type: object
                    type: array
                  position:
                    example: 12
                    type: number
                  removed_by:
                    example: null
                    type: string
                  required:
                    example: false
                    type: boolean
                  short_name:
                    example: JOB-9
                    type: string
                  type:
                    example: select
                    type: string
                type: object
          description: Metaproperty object
      security:
        - permanentToken:
            - METAPROPERTYOVERVIEW
        - OAuth2:
            - METAPROPERTYOVERVIEW
      summary: Retrieve specific metaproperty
      tags:
        - Metaproperties
security:
  - permanentToken:
      - METAPROPERTYOVERVIEW
  - OAuth2:
      - METAPROPERTYOVERVIEW
components:
  securitySchemes:
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            METAPROPERTYOVERVIEW: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            METAPROPERTYOVERVIEW: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
```
