Agicap User rights API

The User rights API from Agicap — 1 operation(s) for user rights.

Operations 1

POST /public/ar-clients/v1/entities/{entityId}/user-rights #

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/agicap-user-rights-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

agicap-user-rights-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact: {}
  title: Clients AR Account reports User rights API
  version: v1
servers:
- url: https://api.agicap.com
- url: https://api.agicap.internal
tags:
- name: User rights
paths:
  /public/ar-clients/v1/entities/{entityId}/user-rights:
    post:
      description: Assign Agicap users to clients in bulk by user email and client external ID. Assignment will replace existing client assignations for the assigned users.
      operationId: Assign users to clients by external id
      parameters:
      - in: path
        name: entityId
        required: true
        schema:
          format: int
          type: number
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssignUsersToClientsByExternalIdRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssignUsersToClientsByExternalIdResponse'
          description: ''
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - bearer: []
      - bearerAuth: []
      tags:
      - User rights
      x-codegen-request-body-name: body
components:
  schemas:
    ClientUserRightAssignment:
      properties:
        agicapUserEmails:
          description: Email addresses of the Agicap users in the organization to assign. Must be valid email addresses. Values are lowercased and trimmed.
          example:
          - john.doe@example.com
          - jane.doe@example.com
          items:
            type: string
          type: array
        clientExternalId:
          description: External identifier of the client from the ERP or external system. Max 1000 characters, trimmed.
          example: client_1
          type: string
      required:
      - clientExternalId
      - agicapUserEmails
      type: object
    ClientUserAssignment:
      properties:
        agicapUserEmails:
          description: Email addresses of the successfully assigned Agicap users.
          example:
          - john.doe@example.com
          - jane.doe@example.com
          items:
            type: string
          type: array
        clientExternalId:
          description: External identifier of the client.
          example: client_1
          type: string
      required:
      - clientExternalId
      - agicapUserEmails
      type: object
    AssignUsersToClientsByExternalIdResponse:
      properties:
        assigned:
          description: Successfully assigned user-to-client groups.
          items:
            $ref: '#/components/schemas/ClientUserAssignment'
          type: array
        notAssigned:
          description: User-to-client groups that could not be assigned.
          items:
            $ref: '#/components/schemas/FailedClientUserAssignment'
          type: array
      required:
      - assigned
      - notAssigned
      type: object
    AssignUsersToClientsByExternalIdRequest:
      properties:
        assignments:
          description: List of client-to-users assignments. Max 1000 items per request.
          items:
            $ref: '#/components/schemas/ClientUserRightAssignment'
          type: array
      required:
      - assignments
      type: object
    AssignmentFailure:
      properties:
        agicapUserEmail:
          description: Email address of the Agicap user that could not be assigned.
          example: unknown@example.com
          type: string
        reason:
          allOf:
          - $ref: '#/components/schemas/AssignUsersToClientsByExternalIdFailureReasonEnum'
          description: Reason why the user could not be assigned to the client.
      required:
      - agicapUserEmail
      - reason
      type: object
    FailedClientUserAssignment:
      properties:
        clientExternalId:
          description: External identifier of the client.
          example: client_1
          type: string
        failures:
          description: Users that could not be assigned to this client.
          items:
            $ref: '#/components/schemas/AssignmentFailure'
          type: array
      required:
      - clientExternalId
      - failures
      type: object
    AssignUsersToClientsByExternalIdFailureReasonEnum:
      description: Reason why the user could not be assigned to the client.
      enum:
      - USER_NOT_FOUND
      - CLIENT_NOT_FOUND
      type: string
  securitySchemes:
    bearer:
      bearerFormat: JWT
      scheme: bearer
      type: http
    bearerAuth:
      bearerFormat: OPAQUE
      scheme: bearer
      type: http