---
title: "Create asset usage"
url: "https://earlyaccess.developers.bynder.com/apis/asset-usage-api-1/versions/159163ba-c9a9-4c4d-a1ea-74c80ec6dea1/paths/api-media-usage/post"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/asset-usage-api-1/versions/159163ba-c9a9-4c4d-a1ea-74c80ec6dea1.md

# Create asset usage

`POST` `/api/media/usage`

Create a new asset usage entry.

## Request body

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

## Responses

- `200` - Successful response
- `400` - Invalid request

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Asset Usage API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/media/usage:
    post:
      description: Create a new asset usage entry.
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              properties:
                additional:
                  description: Additional information.
                  type: string
                asset_id:
                  description: Asset id.
                  type: string
                integration_id:
                  description: Integration id.
                  type: string
                timestamp:
                  description: Datetime in ISO8601 format yyyy-mm-ddThh:mm:ssZ.
                  format: date-time
                  type: string
                uri:
                  description: Location.
                  type: string
              type: object
      responses:
        "200":
          content:
            application/json:
              schema:
                properties:
                  additional:
                    type: string
                  asset_id:
                    type: string
                  id:
                    type: string
                  integration:
                    properties:
                      description:
                        type: string
                      id:
                        type: string
                    type: object
                  timestamp:
                    format: date-time
                    type: string
                  uri:
                    type: string
                type: object
          description: Successful response
        "400":
          content:
            application/json:
              schema:
                properties:
                  asset_id:
                    type: string
                  integration_id:
                    type: string
                type: object
          description: Invalid request
      summary: Create asset usage
      tags:
        - Asset Usage
security:
  - OAuth2:
      - STATISTICS
  - permanentToken:
      - STATISTICS
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            STATISTICS: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            STATISTICS: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
