Venminder (Digital Comply) BusinessUnit API

The BusinessUnit API from Venminder (Digital Comply) — 1 operation(s) for businessunit.

Operations 1

GET /api/v1/BusinessUnitInformation/GetBusinessUnits Provides a list of business unit related informtion.

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/venminder-digital-comply-businessunit-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

venminder-digital-comply-businessunit-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Venminder OpenApi Business Unit API
  version: v1
servers:
- url: https://rsd.venminder.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- Bearer: []
tags:
- name: BusinessUnit
paths:
  /api/v1/BusinessUnitInformation/GetBusinessUnits:
    get:
      tags:
      - BusinessUnit
      summary: Provides a list of business unit related informtion.
      description: Provides a list of business units with their assigned products and users as well as a list of unassigned products and users.
      responses:
        '200':
          description: Returns list of Business Units and unassigned products and unassigned users
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.BusinessUnitInformation'
            application/xml:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.BusinessUnitInformation'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.ErrorResponse'
            application/xml:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.ErrorResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.ErrorResponse'
            application/xml:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.ErrorResponse'
components:
  schemas:
    OpenApi.v1.BusinessUnitInformation:
      title: OpenApi.v1.BusinessUnitInformation
      type: object
      properties:
        businessUnits:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/OpenApi.v1.BusinessUnitInfo'
        unassignedProducts:
          type:
          - array
          - 'null'
          items:
            type: string
        unassignedUsers:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
      xml:
        name: BusinessUnitInformation
    OpenApi.v1.BusinessUnitInfo:
      title: OpenApi.v1.BusinessUnitInfo
      type: object
      properties:
        key:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        products:
          type:
          - array
          - 'null'
          items:
            type: string
        users:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
      xml:
        name: BusinessUnitInfo
    OpenApi.v1.ErrorResponse:
      title: OpenApi.v1.ErrorResponse
      type: object
      properties:
        statusCode:
          type: integer
          format: int32
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/OpenApi.v1.ErrorResource'
      additionalProperties: false
      xml:
        name: ErrorResponse
    OpenApi.v1.ErrorResource:
      title: OpenApi.v1.ErrorResource
      type: object
      properties:
        resourceKey:
          type:
          - string
          - 'null'
        resourceValue:
          type:
          - string
          - 'null'
        field:
          type:
          - string
          - 'null'
      additionalProperties: false
      xml:
        name: ErrorResource
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert access token with Bearer into field eg. Bearer eyJhbGciOiJSUzI1Ni and click authorize.
      name: Authorization
      in: header