Invendor Reports API

The Reports API from Invendor — 5 operation(s) for reports.

Operations 7

GET /v1/Reports Get user saved report states #
POST /v1/Reports Saves (upserts) user defined custom report state #
GET /v1/Reports/{viewId} Returns the saved report view payload by viewId #
GET /v1/Reports/targets Returns the users, groups and accounts available as report state targets for the calling user, based on their group's account relationships. #
POST /v1/Reports/userDefault To set users default report state #
PUT /v1/Reports/{reportId} Update saved report state #
DELETE /v1/Reports/{reportId} Delete saved report state #

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/invendor-reports-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

invendor-reports-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: IO.Common Accounts Reports API
  version: '1.0'
servers:
- url: https://api.invendor.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- OAuth2: []
tags:
- name: Reports
paths:
  /v1/Reports:
    get:
      tags:
      - Reports
      summary: Get user saved report states
      operationId: User reports
      parameters:
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserReportsResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    post:
      tags:
      - Reports
      summary: Saves (upserts) user defined custom report state
      operationId: Save report
      parameters:
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateReportRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateReportRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateReportRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateReportRequest'
      responses:
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Reports/{viewId}:
    get:
      tags:
      - Reports
      summary: Returns the saved report view payload by viewId
      operationId: Get report view
      parameters:
      - name: viewId
        in: path
        required: true
        schema:
          type: string
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Reports/targets:
    get:
      tags:
      - Reports
      summary: 'Returns the users, groups and accounts available as report state targets for the calling user,

        based on their group''s account relationships.'
      operationId: Available report targets
      parameters:
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AvailableReportTargetsResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Reports/userDefault:
    post:
      tags:
      - Reports
      summary: To set users default report state
      operationId: Set default report
      parameters:
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/SetUserDefaultReportRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/SetUserDefaultReportRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/SetUserDefaultReportRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/SetUserDefaultReportRequest'
      responses:
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Reports/{reportId}:
    put:
      tags:
      - Reports
      summary: Update saved report state
      operationId: Update report
      parameters:
      - name: reportId
        in: path
        required: true
        schema:
          type: string
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateReportRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateReportRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateReportRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateReportRequest'
      responses:
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    delete:
      tags:
      - Reports
      summary: Delete saved report state
      operationId: Delete report
      parameters:
      - name: reportId
        in: path
        required: true
        schema:
          type: string
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
components:
  schemas:
    ReportScope:
      enum:
      - 1
      - 2
      - 3
      - 4
      type: integer
      format: int32
    ApiErrorResponse:
      type: object
      properties:
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Error'
      additionalProperties: false
    SetUserDefaultReportRequest:
      type: object
      properties:
        reportId:
          type:
          - string
          - 'null'
        reportName:
          type:
          - string
          - 'null'
      additionalProperties: false
    AvailableReportTargetsResponse:
      type: object
      properties:
        groups:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ReportTargetGroup'
        accounts:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ReportTargetAccount'
      additionalProperties: false
    ReportTargetGroup:
      type: object
      properties:
        id:
          type: integer
          format: int32
        name:
          type:
          - string
          - 'null'
      additionalProperties: false
    CreateReportRequest:
      type: object
      properties:
        scope:
          $ref: '#/components/schemas/ReportScope'
        userId:
          type:
          - integer
          - 'null'
          format: int32
        userProfileId:
          type:
          - integer
          - 'null'
          format: int32
        accountId:
          type:
          - integer
          - 'null'
          format: int32
        reportId:
          type:
          - string
          - 'null'
        payload:
          type:
          - string
          - 'null'
      additionalProperties: false
    UserReportsResponse:
      type: object
      properties:
        defaultReports:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
        userReports:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
        profileReports:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
        accountReports:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
        tenantReports:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
      additionalProperties: false
    ReportTargetAccount:
      type: object
      properties:
        id:
          type: integer
          format: int32
        name:
          type:
          - string
          - 'null'
      additionalProperties: false
    UpdateReportRequest:
      type: object
      properties:
        userId:
          type:
          - integer
          - 'null'
          format: int32
        userProfileId:
          type:
          - integer
          - 'null'
          format: int32
        accountId:
          type:
          - integer
          - 'null'
          format: int32
        scope:
          $ref: '#/components/schemas/ReportScope'
        payload:
          type:
          - string
          - 'null'
      additionalProperties: false
    Error:
      type: object
      properties:
        code:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
      additionalProperties: false
    ProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
      additionalProperties: {}
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://identity.scanbro.com/connect/authorize
          tokenUrl: https://identity.scanbro.com/connect/token
          scopes:
            io.common: default scope