BanQu Organization Associates API

The Organization Associates API from BanQu — 2 operation(s) for organization associates.

Operations 4

GET /orgs/current/associates Get orgs current associates #
POST /orgs/current/associates Create orgs current associates #
PATCH /orgs/current/associates/{userId} Update orgs current associates by user id #
DELETE /orgs/current/associates/{userId} Delete orgs current associates by user id #

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/banqu-organization-associates-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

banqu-organization-associates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: BanQu Organization Associates API
  version: 3.3.4
  description: The BanQu API is organized around REST. Our API is designed to have predictable, resource-oriented URLs and to use HTTP response codes to indicate API errors. We use built-in HTTP features, like HTTP verbs, which can be understood by off-the-shelf HTTP clients, and JSON for input and output.
servers:
- url: https://banqu.app:443/api/v1
security:
- Bearer: []
tags:
- name: Organization Associates
paths:
  /orgs/current/associates:
    get:
      description: List org account associates
      tags:
      - Organization Associates
      responses:
        '200':
          description: List of current org associates
          content:
            application/json:
              schema:
                type: array
                items:
                  oneOf:
                  - $ref: '#/components/schemas/OrgAssociate'
                  - $ref: '#/components/schemas/OrgAssociateInvite'
      summary: Get orgs current associates
      x-summary-source: derived
      operationId: getOrgsCurrentAssociates
      x-operation-id-source: derived
    post:
      description: Add org account associate
      tags:
      - Organization Associates
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrgAssociateInvite'
      responses:
        '201':
          $ref: '#/components/responses/201'
        '202':
          $ref: '#/components/responses/202'
      summary: Create orgs current associates
      x-summary-source: derived
      operationId: postOrgsCurrentAssociates
      x-operation-id-source: derived
  /orgs/current/associates/{userId}:
    patch:
      description: Modify org associate/invite roles
      tags:
      - Organization Associates
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrgAssociatePatch'
      parameters:
      - name: userId
        in: path
        schema:
          type: string
        required: true
      responses:
        '204':
          $ref: '#/components/responses/204'
      summary: Update orgs current associates by user id
      x-summary-source: derived
      operationId: patchOrgsCurrentAssociatesByUserId
      x-operation-id-source: derived
    delete:
      description: Remove org associate/invite
      tags:
      - Organization Associates
      parameters:
      - name: userId
        in: path
        schema:
          type: string
        required: true
      responses:
        '204':
          $ref: '#/components/responses/204'
      summary: Delete orgs current associates by user id
      x-summary-source: derived
      operationId: deleteOrgsCurrentAssociatesByUserId
      x-operation-id-source: derived
components:
  schemas:
    ImmutableTimestamp:
      type: number
      readOnly: true
      description: Number of milliseconds elapsed since January 1, 1970 00:00:00 UTC
      example: 1568894551000
    OrgAssociate:
      type: object
      additionalProperties: false
      properties:
        id:
          $ref: '#/components/schemas/ImmutableId'
        name:
          type: string
        email:
          type: string
          format: email
        phoneNumber:
          type: string
        photo:
          type: string
          format: url
          readOnly: true
        roles:
          $ref: '#/components/schemas/OrgAssociateRoles'
      required:
      - name
    OrgAssociateInvite:
      allOf:
      - type: object
        additionalProperties: false
        properties:
          inviteId:
            $ref: '#/components/schemas/ImmutableId'
          expires:
            $ref: '#/components/schemas/ImmutableTimestamp'
          name:
            type: string
          email:
            type: string
            format: email
          phoneNumber:
            type: string
          roles:
            $ref: '#/components/schemas/OrgAssociateRoles'
        required:
        - name
      - anyOf:
        - title: email not empty
          required:
          - email
        - title: phoneNumber not empty
          required:
          - phoneNumber
    OrgAssociateRoles:
      title: Role IDs
      description: ID's of the roles assigned to the associate in the current org account
      type: array
      uniqueItems: true
      items:
        title: Role ID
        type: string
        minLength: 1
    ImmutableId:
      type: string
      readOnly: true
      minLength: 32
      maxLength: 32
      example: '00000000000000000000000000000000'
    OrgAssociatePatch:
      type: object
      additionalProperties: false
      properties:
        roles:
          $ref: '#/components/schemas/OrgAssociateRoles'
      required:
      - roles
  responses:
    '202':
      description: "HTTP 202 - Accepted \nThe request has been accepted for processing, but the processing has not been completed."
    '201':
      description: HTTP 201 - Created
      headers:
        Location:
          schema:
            type: string
          description: Url of the created entity
    '204':
      description: "HTTP 204 - No Content \nThe request has been processed, but no content will be provided in response"
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Your authentication token