Bynder Groups API

Retrieve the user groups configured in a portal. Groups drive workflow assignment and permission grouping.

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-groups-v4-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 email required.

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

OpenAPI Specification

bynder-groups-v4-openapi.json Raw ↑
{"openapi":"3.1.0","info":{"title":"Groups","version":"1.0.0"},"servers":[{"url":"https://{your-bynder-domain}/"}],"tags":[{"name":"Groups","description":"Manage and retrieve groups within your Bynder account. Requires the **GROUPMANAGEMENT** security role.\n"}],"paths":{"/api/groups/list/":{"get":{"summary":"Retrieve groups","description":"Requires the **GROUPMANAGEMENT** security role.","tags":["Groups"],"parameters":[{"name":"search_term","in":"query","required":false,"schema":{"type":"string"},"description":"Search on matching group names."},{"name":"page","in":"query","required":false,"schema":{"type":"integer","default":1},"description":"What page of results to return."},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":20},"description":"Maximum results to return. If limit is not provided the first 20 results will be returned."},{"name":"sort_order","in":"query","required":false,"schema":{"type":"string","enum":["asc","desc"]},"description":"Order of the returned list of groups."}],"responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"}}}}}}}},"security":[{"permanentToken":["GROUPMANAGEMENT"]},{"OAuth2":["GROUPMANAGEMENT"]}]}}},"components":{"securitySchemes":{"permanentToken":{"type":"apiKey","in":"header","name":"Authorization"},"OAuth2":{"type":"oauth2","flows":{"clientCredentials":{"tokenUrl":"https://{your-bynder-domain}/v6/authentication/oauth2/token","scopes":{"GROUPMANAGEMENT":"Grants permission to manage groups"}},"authorizationCode":{"authorizationUrl":"https://{your-auth-url}","tokenUrl":"https://{your-bynder-domain}/v6/authentication/oauth2/token","scopes":{"GROUPMANAGEMENT":"Grants permission to manage groups"}}}}}}}