Agicap Beta API

The Beta API from Agicap — 16 operation(s) for beta.

Operations 16

POST /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/client-credit-notes/{id}/attach-readable Attach readable on client credit note #
DELETE /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/client-credit-notes/{id}/unattach-readable Unattach readable on client credit note #
POST /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/client-invoices/{id}/attach-readable Attach readable on client invoice #
DELETE /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/client-invoices/{id}/unattach-readable Unattach readable on client invoice #
POST /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/supplier-credit-notes/{id}/attach-readable Attach readable on supplier credit note #
DELETE /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/supplier-credit-notes/{id}/unattach-readable Unattach readable on supplier credit note #
POST /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/supplier-invoices/{id}/attach-readable Attach readable on supplier invoice #
DELETE /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/supplier-invoices/{id}/unattach-readable Unattach readable on supplier invoice #
POST /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/client-credit-notes/{id}/attach-readable Attach readable on client credit note #
DELETE /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/client-credit-notes/{id}/unattach-readable Unattach readable on client credit note #
POST /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/client-invoices/{id}/attach-readable Attach readable on client invoice #
DELETE /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/client-invoices/{id}/unattach-readable Unattach readable on client invoice #
POST /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/supplier-credit-notes/{id}/attach-readable Attach readable on supplier credit note #
DELETE /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/supplier-credit-notes/{id}/unattach-readable Unattach readable on supplier credit note #
POST /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/supplier-invoices/{id}/attach-readable Attach readable on supplier invoice #
DELETE /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/supplier-invoices/{id}/unattach-readable Unattach readable on supplier invoice #

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-beta-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

agicap-beta-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact: {}
  title: Clients AR Account reports Beta API
  version: v1
servers:
- url: https://api.agicap.com
- url: https://api.agicap.internal
tags:
- name: Beta
paths:
  /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/client-credit-notes/{id}/attach-readable:
    post:
      operationId: Beta_ClientCreditNoteAttachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      requestBody:
        content:
          multipart/form-data:
            encoding:
              file:
                style: form
            schema:
              properties:
                file:
                  description: Readable file of the document in PDF format
                  format: binary
                  type: string
              required:
              - file
              type: object
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Attach readable on client credit note
      tags:
      - Beta
  /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/client-credit-notes/{id}/unattach-readable:
    delete:
      operationId: Beta_ClientCreditNoteUnattachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Unattach readable on client credit note
      tags:
      - Beta
  /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/client-invoices/{id}/attach-readable:
    post:
      operationId: Beta_ClientInvoiceAttachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      requestBody:
        content:
          multipart/form-data:
            encoding:
              file:
                style: form
            schema:
              properties:
                file:
                  description: Readable file of the document in PDF format
                  format: binary
                  type: string
              required:
              - file
              type: object
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Attach readable on client invoice
      tags:
      - Beta
  /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/client-invoices/{id}/unattach-readable:
    delete:
      operationId: Beta_ClientInvoiceUnattachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Unattach readable on client invoice
      tags:
      - Beta
  /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/supplier-credit-notes/{id}/attach-readable:
    post:
      operationId: Beta_SupplierCreditNoteAttachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      requestBody:
        content:
          multipart/form-data:
            encoding:
              file:
                style: form
            schema:
              properties:
                file:
                  description: Readable file of the document in PDF format
                  format: binary
                  type: string
              required:
              - file
              type: object
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Attach readable on supplier credit note
      tags:
      - Beta
  /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/supplier-credit-notes/{id}/unattach-readable:
    delete:
      operationId: Beta_SupplierCreditNoteUnattachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Unattach readable on supplier credit note
      tags:
      - Beta
  /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/supplier-invoices/{id}/attach-readable:
    post:
      operationId: Beta_SupplierInvoiceAttachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      requestBody:
        content:
          multipart/form-data:
            encoding:
              file:
                style: form
            schema:
              properties:
                file:
                  description: Readable file of the document in PDF format
                  format: binary
                  type: string
              required:
              - file
              type: object
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Attach readable on supplier invoice
      tags:
      - Beta
  /public/business-documents/v1/entities/{entityid}/connections/{connectionid}/supplier-invoices/{id}/unattach-readable:
    delete:
      operationId: Beta_SupplierInvoiceUnattachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Unattach readable on supplier invoice
      tags:
      - Beta
  /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/client-credit-notes/{id}/attach-readable:
    post:
      operationId: Beta_ClientCreditNoteAttachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      requestBody:
        content:
          multipart/form-data:
            encoding:
              file:
                style: form
            schema:
              properties:
                file:
                  description: Readable file of the document in PDF format
                  format: binary
                  type: string
              required:
              - file
              type: object
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Attach readable on client credit note
      tags:
      - Beta
  /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/client-credit-notes/{id}/unattach-readable:
    delete:
      operationId: Beta_ClientCreditNoteUnattachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Unattach readable on client credit note
      tags:
      - Beta
  /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/client-invoices/{id}/attach-readable:
    post:
      operationId: Beta_ClientInvoiceAttachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      requestBody:
        content:
          multipart/form-data:
            encoding:
              file:
                style: form
            schema:
              properties:
                file:
                  description: Readable file of the document in PDF format
                  format: binary
                  type: string
              required:
              - file
              type: object
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Attach readable on client invoice
      tags:
      - Beta
  /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/client-invoices/{id}/unattach-readable:
    delete:
      operationId: Beta_ClientInvoiceUnattachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occurred.
      security:
      - bearer_client_credentials:
        - agicap:public-api
      - bearer_client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Unattach readable on client invoice
      tags:
      - Beta
  /public/business-documents/v2/entities/{entityid}/connections/{connectionid}/supplier-credit-notes/{id}/attach-readable:
    post:
      operationId: Beta_SupplierCreditNoteAttachReadable
      parameters:
      - description: Agicap entity unique identifier
        in: path
        name: entityid
        required: true
        schema:
          description: Agicap entity unique identifier
          type: string
      - description: The connection unique identifier
        in: path
        name: connectionid
        required: true
        schema:
          description: The connection unique identifier
          format: uuid
          type: string
      - description: Unique identifier generated by Agicap
        in: path
        name: id
        required: true
        schema:
          description: Unique identifier generated by Agicap
          format: uuid
          type: string
      requestBody:
        content:
          multipart/form-data:
            encoding:
              file:
                style: form
            schema:
              properties:
                file:
                  description: Readable file of the document in PDF format
                  format: binary
                  type: string
              required:
              - file
              type: object
      responses:
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
        '500':
          content:
            application/problem+json:
              schema:
                properties:
                  detail:
                    description: Details of the error
                    type:
                    - string
                    - 'null'
                  instance:
                    type:
                    - string
                    - 'null'
                  status:
                    description: Code status
                    type:
                    - integer
                    - 'null'
                  title:
                    description: Name of the error
                    type:
                    - string
                    - 'null'
                  type:
                    description: Type of error
                    type:
                    - string
                    - 'null'
                type: object
          description: An internal server occur

# --- truncated at 32 KB (39 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/agicap/refs/heads/main/openapi/agicap-beta-api-openapi.yml