Invendor Dimensions API

The Dimensions API from Invendor — 12 operation(s) for dimensions.

Operations 16

GET /v1/Dimensions Get dimensions list #
POST /v1/Dimensions Create new dimenson #
GET /v1/Dimensions/{id} Get dimension details #
PUT /v1/Dimensions/{id} Update dimension #
DELETE /v1/Dimensions/{id} Delete dimension #
GET /v1/Dimensions/{id}/operations Get dimensions operations #
GET /v1/Dimensions/properties Get the list of all the properties added to dimensions #
GET /v1/Dimensions/values/properties Get the list of all the properties added to dimensions #
GET /v1/Dimensions/params Get dimensions' parameters #
POST /v1/Dimensions/params Create or update dimension parameters #
GET /api/v1/Dimensions/Users Get all the values for user dimensions
GET /api/v1/Dimensions/Locations Get all the values for location dimensions
GET /api/v1/Dimensions/Operations Get all the values for operation dimensions
GET /api/v1/Dimensions/Items/properties Get all the values of items public properties
GET /api/v1/Dimensions/Users/properties Get all the values of users public properties
GET /api/v1/Dimensions/Accounts Get all active accounts (companies) the user has access to

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-dimensions-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-dimensions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: IO.Common Accounts Dimensions 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: Dimensions
paths:
  /v1/Dimensions:
    get:
      tags:
      - Dimensions
      summary: Get dimensions list
      operationId: GetDimensionsList
      parameters:
      - name: Filter
        in: query
        schema:
          type: string
      - name: Page
        in: query
        schema:
          type: integer
          format: int32
      - name: PageSize
        in: query
        schema:
          type: integer
          format: int32
      - name: SortColumn
        in: query
        schema:
          type: string
      - name: SortOrder
        in: query
        schema:
          type: string
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DimensionResponsePagedResult'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    post:
      tags:
      - Dimensions
      summary: Create new dimenson
      operationId: CreateDimension
      parameters:
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        description: Create dimension request object
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateDimensionRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateDimensionRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateDimensionRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateDimensionRequest'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                type: integer
                format: int32
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Dimensions/{id}:
    get:
      tags:
      - Dimensions
      summary: Get dimension details
      operationId: GetDimensionDetails
      parameters:
      - name: id
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DimensionDetailsResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    put:
      tags:
      - Dimensions
      summary: Update dimension
      operationId: UpdateDimension
      parameters:
      - name: id
        in: path
        description: Dimension Id
        required: true
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        description: Update dimension request object
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateDimensionRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateDimensionRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateDimensionRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateDimensionRequest'
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    delete:
      tags:
      - Dimensions
      summary: Delete dimension
      operationId: DeleteDimension
      parameters:
      - name: id
        in: path
        description: Dimension Id
        required: true
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Dimensions/{id}/operations:
    get:
      tags:
      - Dimensions
      summary: Get dimensions operations
      operationId: GetDimensionOperations
      parameters:
      - name: id
        in: path
        description: Dimension Id
        required: true
        schema:
          type: integer
          format: int32
      - name: Filter
        in: query
        schema:
          type: string
      - name: Page
        in: query
        schema:
          type: integer
          format: int32
      - name: PageSize
        in: query
        schema:
          type: integer
          format: int32
      - name: SortColumn
        in: query
        schema:
          type: string
      - name: SortOrder
        in: query
        schema:
          type: string
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OperationResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Dimensions/properties:
    get:
      tags:
      - Dimensions
      summary: Get the list of all the properties added to dimensions
      operationId: GetAllUsedDimensionProperties
      parameters:
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Dimensions/values/properties:
    get:
      tags:
      - Dimensions
      summary: Get the list of all the properties added to dimensions
      operationId: GetAllUsedDimensionValueProperties
      parameters:
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Dimensions/params:
    get:
      tags:
      - Dimensions
      summary: Get dimensions' parameters
      operationId: Account dimensions parameters
      parameters:
      - name: dimensionId
        in: query
        description: ''
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AccountDimensionsParametersResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    post:
      tags:
      - Dimensions
      summary: Create or update dimension parameters
      operationId: Account dimensions parameters
      parameters:
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        description: ''
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/CreateUpdateAccountDimensionParametersRequest'
          application/json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/CreateUpdateAccountDimensionParametersRequest'
          text/json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/CreateUpdateAccountDimensionParametersRequest'
          application/*+json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/CreateUpdateAccountDimensionParametersRequest'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountDimensionsParametersResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /api/v1/Dimensions/Users:
    get:
      tags:
      - Dimensions
      summary: Get all the values for user dimensions
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UserDTO'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.reporting
  /api/v1/Dimensions/Locations:
    get:
      tags:
      - Dimensions
      summary: Get all the values for location dimensions
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LocationDTO'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.reporting
  /api/v1/Dimensions/Operations:
    get:
      tags:
      - Dimensions
      summary: Get all the values for operation dimensions
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OperationDTO'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.reporting
  /api/v1/Dimensions/Items/properties:
    get:
      tags:
      - Dimensions
      summary: Get all the values of items public properties
      parameters:
      - name: accountId
        in: query
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.reporting
  /api/v1/Dimensions/Users/properties:
    get:
      tags:
      - Dimensions
      summary: Get all the values of users public properties
      parameters:
      - name: accountId
        in: query
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.reporting
  /api/v1/Dimensions/Accounts:
    get:
      tags:
      - Dimensions
      summary: Get all active accounts (companies) the user has access to
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AccountBasicResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.reporting
components:
  schemas:
    DimensionResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        name:
          type:
          - string
          - 'null'
        shortName:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/DimensionType'
        accountId:
          type:
          - integer
          - 'null'
          format: int32
      additionalProperties: false
    DimensionType:
      enum:
      - 0
      - 1
      - 2
      - 3
      - 4
      - 5
      - 6
      - 7
      - 8
      - 100
      - 198
      - 199
      - 200
      type: integer
      format: int32
    OperationDTO:
      type: object
      properties:
        operationId:
          type: integer
          format: int32
        name:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
      additionalProperties: false
    AccountDimensionsParametersResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        accountId:
          type:
          - integer
          - 'null'
          format: int32
        dimensionId:
          type: integer
          format: int32
        showOnReports:
          type: boolean
        showOnNotifications:
          type: boolean
      additionalProperties: false
    OperationType:
      enum:
      - 0
      - 1
      - 2
      - 3
      - 4
      - 5
      - 6
      - 7
      type: integer
      format: int32
    CreateUpdateAccountDimensionParametersRequest:
      type: object
      properties:
        accountId:
          type:
          - integer
          - 'null'
          format: int32
        dimensionId:
          type: integer
          format: int32
        showOnReports:
          type: boolean
        showOnNotifications:
          type: boolean
      additionalProperties: false
    ApiErrorResponse:
      type: object
      properties:
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Error'
      additionalProperties: false
    DimensionDetailsResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        name:
          type:
          - string
          - 'null'
        shortName:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/DimensionType'
        accountId:
          type:
          - integer
          - 'null'
          format: int32
        properties:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
        itemCondition:
          $ref: '#/components/schemas/ItemCondition'
      additionalProperties: false
    AccountBasicResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        name:
          type:
          - string
          - 'null'
        accountCode:
          type:
          - string
          - 'null'
        isTenantPrimary:
          type: boolean
      additionalProperties: false
    OperationResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        accountId:
          type:
          - integer
          - 'null'
          format: int32
        parentId:
          type:
          - integer
          - 'null'
          format: int32
        name:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/OperationType'
        genericType:
          type:
          - string
          - 'null'
      additionalProperties: false
    DimensionResponsePagedResult:
      type: object
      properties:
        pageSize:
          type: integer
          format: int32
          readOnly: true
        page:
          type: integer
          format: int32
          readOnly: true
        totalCount:
          type: integer
          format: int32
          readOnly: true
        filteredCount:
          type: integer
          format: int32
          readOnly: true
        data:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/DimensionResponse'
          readOnly: true
      additionalProperties: false
    LocationDTO:
      type: object
      properties:
        locationId:
          type: integer
          format: int32
        name:
          type:
          - string
          - 'null'
        accountId:
          type:
          - integer
          - 'null'
          format: int32
        accounts:
          type:
          - array
          - 'null'
          items:
            type: integer
            format: int32
      additionalProperties: false
    CreateDimensionRequest:
      type: object
      properties:
        accountId:
          type:
          - integer
          - 'null'
          format: int32
        name:
          type:
          - string
          - 'null'
        shortName:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/DimensionType'
        rank:
          type: integer
          format: int32
        properties:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
        itemCondition:
          $ref: '#/components/schemas/ItemCondition'
      additionalProperties: false
    UserDTO:
      type: object
      properties:
        userId:
          type: integer
          format: int32
        userName:
          type:
          - string
          - 'null'
        profileId:
          type: integer
          format: int32
        profileName:
          type:
          - string
          - 'null'
        firstName:
          type:
          - string
          - 'null'
        lastName:
          type:
          - string
          - 'null'
        fullName:
          type:
          - string
          - 'null'
        isDeleted:
          type: boolean
      additionalProperties: false
    Error:
      type: object
      properties:
        code:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
      additionalProperties: false
    UpdateDimensionRequest:
      type: object
      properties:
        accountId:
          type:
          - integer
          - 'null'
          format: int32
        name:
          type:
          - string
          - 'null'
        shortName:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/DimensionType'
        rank:
          type: integer
          format: int32
        properties:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
        itemCondition:
          $ref: '#/components/schemas/ItemCondition'
      additionalProperties: false
    ItemCondition:
      type: object
      properties:
        propertyKey:
          type:
          - string
          - 'null'
        propertyValue:
          type:
          - string
          - 'null'
      additionalProperties: false
  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