---
title: "Delete metaproperty"
url: "https://earlyaccess.developers.bynder.com/apis/metaproperty-1/versions/e015c0a3-e9ae-46ee-9a70-047f982dcfe9/operations/deleteApi1TaxonomyMetapropertiesMetapropertyid"
---

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

# Delete metaproperty

`DELETE` `/api/1/taxonomy/metaproperties/{metapropertyId}`

Operation ID: `deleteApi1TaxonomyMetapropertiesMetapropertyid`

Delete a metaproperty by id

## Path parameters

- `metapropertyId` (string, uuid, required)

## Responses

- `200`
- `404`

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Metaproperty
  version: "1.0"
servers:
  - url: https://{your-bynder-domain}
paths:
  /api/1/taxonomy/metaproperties/{metapropertyId}:
    delete:
      description: Delete a metaproperty by id
      operationId: deleteApi1TaxonomyMetapropertiesMetapropertyid
      parameters:
        - in: path
          name: metapropertyId
          required: true
          schema:
            format: uuid
            type: string
      responses:
        "200":
          content:
            application/json:
              examples:
                MetapropertyDeleted:
                  summary: Response when the metaproperty is deleted
                  value:
                    message: Metaproperty has been deleted
              schema:
                properties:
                  message:
                    type: string
                required:
                  - message
                title: MetapropertyDeletedOutput
                type: object
          description: ""
        "404":
          content:
            application/json:
              examples:
                MetapropertyNotExisting:
                  summary: Response when the metaproperty does not exist
                  value:
                    errorCode: metaproperty-not-existing
                    message: Metaproperty does not exist
              schema:
                properties:
                  errorCode:
                    type: string
                  message:
                    type: string
                required:
                  - errorCode
                  - message
                title: MetapropertyNotExistingOutput
                type: object
          description: ""
      summary: Delete metaproperty
      tags:
        - Metaproperties - New API (Preferred)
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
```
