Bynder Users API

Manage users within your Bynder account. You can create, retrieve, update, and delete users as needed.

Operations 4

GET /api/v4/users/ Retrieve users
POST /api/v4/users/ Create user
GET /api/workflow/users/ Retrieve users
GET /api/workflow/users/{id} Retrieve specific user

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-users-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-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bynder Users API
  version: 1.0.0
  description: 'Operations tagged Users across 2 of this provider''s published API definitions: bynder-users-v4-openapi.json, bynder-wf-users-groups-v4-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{your-bynder-domain}/
- url: https://{your-bynder-domain}
tags:
- name: Users
  description: 'Manage users within your Bynder account. You can create, retrieve, update, and delete users as needed.

    '
paths:
  /api/v4/users/:
    get:
      summary: Retrieve users
      tags:
      - Users
      security:
      - permanentToken:
        - USERMANAGEMENT
      - OAuth2:
        - USERMANAGEMENT
      parameters:
      - name: includeInActive
        in: query
        required: false
        schema:
          type: boolean
          default: false
        description: Whether to include inactive users in the list of results.
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 100
        description: Maximum results to return. If limit is not provided, all results are returned.
      - name: page
        in: query
        required: false
        schema:
          type: integer
          default: 1
        description: What page of results to return.
      responses:
        '200':
          description: Successful response
          headers:
            X-Pagination-TotalRecords:
              schema:
                type: integer
              description: Total number of records.
            X-Pagination-TotalPages:
              schema:
                type: integer
              description: Total number of pages.
            X-Pagination-Page:
              schema:
                type: integer
              description: Current page number.
            X-Pagination-Limit:
              schema:
                type: integer
              description: Limit of records per page.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    email2:
                      type: string
                    salesrepId:
                      type: string
                    name:
                      type: string
                    id:
                      type: string
                    active:
                      type: integer
                    isSSOOnly:
                      type: boolean
                    username:
                      type: string
                    email:
                      type: string
                    profileId:
                      type: string
                    employeeNumber:
                      type: string
                    timeZone:
                      type: string
                    website:
                      type: string
                    country:
                      type: string
                    groups:
                      type: array
                      items:
                        type: object
                        properties:
                          name:
                            type: string
                          id:
                            type: string
    post:
      summary: Create user
      tags:
      - Users
      security:
      - permanentToken:
        - USERMANAGEMENT
      - OAuth2:
        - USERMANAGEMENT
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/User'
      responses:
        '201':
          description: User created
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  username:
                    type: string
    servers:
    - url: https://{your-bynder-domain}/
  /api/workflow/users/:
    get:
      summary: Retrieve users
      tags:
      - Users
      security:
      - permanentToken:
        - USERMANAGEMENT
      - OAuth2:
        - USERMANAGEMENT
      responses:
        '200':
          description: A list of workflow users
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    ID:
                      type: string
                      example: 00000000-0000-0000-0000-000000000000
                    fullname:
                      type: string
                      example: Firstname Lastname
                    BynderUser:
                      type: object
                      properties:
                        firstName:
                          type: string
                          example: Firstname
                        lastName:
                          type: string
                          example: Lastname
                        infix:
                          type: string
                          example: Van
                        email:
                          type: string
                          example: example@example.com
                        id:
                          type: string
                          example: 00000000-0000-0000-0000-000000000000
    servers:
    - url: https://{your-bynder-domain}
  /api/workflow/users/{id}:
    get:
      summary: Retrieve specific user
      tags:
      - Users
      security:
      - permanentToken:
        - USERMANAGEMENT
      - OAuth2:
        - USERMANAGEMENT
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          example: 00000000-0000-0000-0000-000000000000
      responses:
        '200':
          description: A specific workflow user
          content:
            application/json:
              schema:
                type: object
                properties:
                  ID:
                    type: string
                    example: 00000000-0000-0000-0000-000000000000
                  fullname:
                    type: string
                    example: Firstname Lastname
                  BynderUser:
                    type: object
                    properties:
                      firstName:
                        type: string
                        example: Firstname
                      lastName:
                        type: string
                        example: Lastname
                      infix:
                        type: string
                        example: Van
                      email:
                        type: string
                        example: example@example.com
                      id:
                        type: string
                        example: 00000000-0000-0000-0000-000000000000
    servers:
    - url: https://{your-bynder-domain}
components:
  schemas:
    User:
      properties:
        username:
          type: string
        password:
          type: string
        email:
          type: string
        profileId:
          type: string
        active:
          type: integer
          enum:
          - 1
          - 0
          default: 1
        isSSOOnly:
          type: boolean
          default: false
        language:
          type: string
        firstname:
          type: string
        infix:
          type: string
        lastname:
          type: string
        groupIds:
          type: string
        phoneNumber:
          type: string
        companyName:
          type: string
        department:
          type: string
        job:
          type: string
        costCenter:
          type: string
      required:
      - password
      - email
      - profileId
      - firstname
      - lastname
  securitySchemes:
    permanentToken:
      type: apiKey
      in: header
      name: Authorization
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
          scopes:
            USERMANAGEMENT: Grants permission to manage users
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
          scopes:
            USERMANAGEMENT: Grants permission to manage users
x-refined-from:
- bynder-users-v4-openapi.json
- bynder-wf-users-groups-v4-openapi.json