---
title: "Create metaproperty"
url: "https://earlyaccess.developers.bynder.com/apis/metaproperty-1/versions/e015c0a3-e9ae-46ee-9a70-047f982dcfe9/paths/api-v4-metaproperties/post"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/metaproperty-1/versions/e015c0a3-e9ae-46ee-9a70-047f982dcfe9.md

# Create metaproperty

`POST` `/api/v4/metaproperties`

Requires the METAPROPERTYMANAGEMENT or METAMANAGEMENT security role.

## Request body

Content types: `application/x-www-form-urlencoded`

## Responses

- `201` - Created
- `400` - Invalid metaproperty type

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Metaproperty
  version: "1.0"
servers:
  - url: https://{your-bynder-domain}
paths:
  /api/v4/metaproperties:
    post:
      description: Requires the METAPROPERTYMANAGEMENT or METAMANAGEMENT security role.
      requestBody:
        content:
          application/x-www-form-urlencoded:
            examples:
              example-1:
                value:
                  data: '{"name": "ColourMeta", "type": "select", "label": "Colour", "labels":
                    {"fr_FR": "foo", "en_US": "foo"}, "zindex": 4, "isEditable":
                    true, "isFilterable": true, "isMainfilter": true,
                    "isMultiselect": true, "isRequired": true, "isMultifilter":
                    true, "isDrilldown": true, "isDisplayField": true,
                    "isApiField": true}'
            schema:
              properties:
                data:
                  description: JSON-serialised string
                  example: |
                    {
                      "name": "ColourMeta",
                      "type": "select",
                      "label": "Colour",
                      "labels": {"fr_FR": "foo", "en_US": "foo"},
                      "zindex": 4,
                      "isEditable": true,
                      "isFilterable": true,
                      "isMainfilter": true,
                      "isMultiselect": true,
                      "isRequired": true,
                      "isMultifilter": true,
                      "isDrilldown": true,
                      "isDisplayField": true,
                      "isApiField": true
                    }
                  type: string
              type: object
      responses:
        "201":
          content:
            application/json:
              examples:
                example-1:
                  value:
                    id: 00000000-0000-0000-0000000000000000
                    message: Created
                    statuscode: 201
          description: Created
        "400":
          content:
            application/json:
              examples:
                example-1:
                  value:
                    message: Invalid metaproperty type
                    statuscode: 400
          description: Invalid metaproperty type
      summary: Create metaproperty
      tags:
        - Metaproperties - 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
```
