Bynder Asset Usage Sync API

This alternative API call allows you to sync all your usage from a single integration. * A usage will be created when there is no existing usage on the specified asset * A usage will be updated when adding additional info * A usage will be deleted when specifying a URI but not using that URI in a usage __Warning:__ Requires the STATISTICS security role.

Operations 1

POST /api/media/usage/sync Sync asset usage

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bynder-asset-usage-sync-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

bynder-asset-usage-sync-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Asset Usage Sync API
  version: 1.0.0
  description: 'These calls allow you to keep track of assets being exported from Bynder and imported into a third party application. In order to get started or find an existing integration id you should check out this [Bynder support](https://help.bynder.com/en/216226-track-asset-usage.html#UUID-5db586ff-9502-8e5b-4355-ca3630fceee3_N1579707153615_body) article. If you want to register a new third party application please contact us at [support@bynder.com](mailto:support@bynder.com).

    '
servers:
- url: https://{your-bynder-domain}/
security:
- OAuth2:
  - STATISTICS
- permanentToken:
  - STATISTICS
tags:
- name: Asset Usage Sync
  description: 'This alternative API call allows you to sync all your usage from a single integration.

    * A usage will be created when there is no existing usage on the specified asset

    * A usage will be updated when adding additional info

    * A usage will be deleted when specifying a URI but not using that URI in a usage


    __Warning:__ Requires the STATISTICS security role.

    '
paths:
  /api/media/usage/sync:
    post:
      summary: Sync asset usage
      description: Sync all usage from a single integration.
      tags:
      - Asset Usage Sync
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                integration_id:
                  type: string
                  description: Integration id.
                uris:
                  type: array
                  items:
                    type: string
                  description: An array of URIs that are part of your integration.
                usages:
                  type: array
                  items:
                    type: object
                    properties:
                      asset_id:
                        type: string
                      uri:
                        type: string
                      additional:
                        type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  accepted:
                    type: array
                    items:
                      type: object
                      properties:
                        additional:
                          type: string
                        asset_id:
                          type: string
                        uri:
                          type: string
                  new:
                    type: array
                    items:
                      type: object
                      properties:
                        additional:
                          type: string
                        asset_id:
                          type: string
                        id:
                          type: string
                        integration:
                          type: object
                          properties:
                            description:
                              type: string
                            id:
                              type: string
                        timestamp:
                          type: string
                          format: date-time
                        uri:
                          type: string
                  rejected:
                    type: array
                    items:
                      type: object
                      properties:
                        asset_id:
                          type: string
                        reason:
                          type: string
                        uri:
                          type: string
                  removed:
                    type: array
                    items:
                      type: object
                      properties:
                        asset_id:
                          type: string
                        uri:
                          type: string
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                type: object
                properties:
                  integration_id:
                    type: string
                  asset_id:
                    type: string
components:
  securitySchemes:
    permanentToken:
      type: apiKey
      in: header
      name: Authorization
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
          scopes:
            STATISTICS: ''
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
          scopes:
            STATISTICS: ''