Inspectorio MEASUREMENT CHART API

The MEASUREMENT CHART API from Inspectorio — 1 operation(s) for measurement chart.

Operations 3

GET /api/v1/measurement-charts/{style_id} Get Measurement Chart
POST /api/v1/measurement-charts/{style_id} Create Measurement Chart
PUT /api/v1/measurement-charts/{style_id} Update Measurement Chart

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/inspectorio-measurement-chart-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

inspectorio-measurement-chart-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: File Management ANALYTICS MEASUREMENT CHART API
  version: v3
servers:
- description: Production Environment
  url: https://files-integration.inspectorio.com
- description: Pre-Production Environment
  url: https://files-integration.pre.inspectorio.com
tags:
- name: MEASUREMENT CHART
paths:
  /api/v1/measurement-charts/{style_id}:
    get:
      summary: Get Measurement Chart
      description: Get Measurement Chart
      parameters:
      - in: path
        name: style_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeasurementListResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestApiError'
          description: Bad request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedApiError'
          description: Unauthorized
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidateApiError'
          description: Validation Error
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TooManyResponsesApiError'
          description: Rate-limiting Error
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalApiError'
          description: Internal Error
      tags:
      - MEASUREMENT CHART
    post:
      summary: Create Measurement Chart
      description: Create Measurement Chart
      parameters:
      - in: path
        name: style_id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MeasurementForm'
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeasurementListResponse'
          description: Created
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestApiError'
          description: Bad request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedApiError'
          description: Unauthorized
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidateApiError'
          description: Validation Error
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TooManyResponsesApiError'
          description: Rate-limiting Error
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalApiError'
          description: Internal Error
      tags:
      - MEASUREMENT CHART
    put:
      summary: Update Measurement Chart
      description: Update Measurement Chart
      parameters:
      - in: path
        name: style_id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MeasurementForm'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeasurementListResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestApiError'
          description: Bad request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthenticatedApiError'
          description: Unauthorized
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidateApiError'
          description: Validation Error
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TooManyResponsesApiError'
          description: Rate-limiting Error
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalApiError'
          description: Internal Error
      tags:
      - MEASUREMENT CHART
components:
  schemas:
    UnauthenticatedApiError:
      properties:
        errorCode:
          example: Generic
          type: string
        message:
          example: Cannot retrieve session data because of expired token
          type: string
      type: object
    ValidateApiError:
      properties:
        errorCode:
          example: Generic
          type: string
        errors:
          example:
            type:
            - Input type is not valid
          type: object
        message:
          example: Validation error
          type: string
      type: object
    TooManyResponsesApiError:
      properties:
        errorCode:
          example: Generic
          type: string
        message:
          example: Too many requests
          type: string
      type: object
    MeasurementForm:
      properties:
        clientUpdatedDate:
          description: The last updated date from the client system of the Measurement Chart
          example: '2019-02-20T06:37:18Z'
          format: date-time
          type:
          - string
          - 'null'
        measurements:
          description: Measurement chart information
          items:
            $ref: '#/components/schemas/MeasurementItem'
          minItems: 1
          type: array
        source:
          description: The source from which the Measurement Chart data comes
          example: SPARK
          maxLength: 30
          type:
          - string
          - 'null'
        supplierId:
          type:
          - string
          - 'null'
      required:
      - measurements
      type: object
    MeasurementListResponse:
      properties:
        data:
          $ref: '#/components/schemas/MeasurementListInfo'
          description: Measurement charts data
      type: object
    BadRequestApiError:
      properties:
        errorCode:
          example: Generic
          type: string
        message:
          example: Bad Request
          type: string
      type: object
    MeasurementItemDetail:
      properties:
        measurement:
          description: Measurement value of a size
          example: '2'
          type: number
        size:
          description: Size name
          example: Medium
          minLength: 1
          type: string
      required:
      - measurement
      - size
      type: object
    MeasurementItem:
      properties:
        caption:
          description: Caption of a point of measurement
          example: C01
          minLength: 1
          type: string
        isPomCritical:
          description: Measurement is critical or not
          example: 'true'
          type:
          - boolean
          - 'null'
        pom:
          description: Point of measurement
          example: Chest
          minLength: 1
          type: string
        setId:
          description: The external id of the measurement set. Use this field when you want to group POMs in a specified set
          example: Set 1
          maxLength: 500
          type:
          - string
          - 'null'
        sizes:
          description: List of sizes in the measurement chart
          items:
            $ref: '#/components/schemas/MeasurementItemDetail'
          minItems: 1
          type: array
        tolerance:
          description: Tolerance Lower & Upper of a point of measurement, only use this attribute if your organization has not enabled Unequal Tolerance
          example: '1'
          type:
          - number
          - 'null'
        toleranceLower:
          description: Tolerance Lower, use this attribute together with toleranceUpper if your organization has enabled Unequal Tolerance
          example: '1'
          type:
          - number
          - 'null'
        toleranceUpper:
          description: Tolerance Upper, use this attribute together with toleranceLower if your organization has enabled Unequal Tolerance
          example: '1'
          type:
          - number
          - 'null'
        unit:
          description: Unit in the measurement chart in inch,cm,mm
          enum:
          - inch
          - cm
          - mm
          example: cm
          type: string
      required:
      - caption
      - pom
      - sizes
      - unit
      type: object
    MeasurementResponse:
      properties:
        caption:
          description: Caption of the point of measurement
          example: C01
          type: string
        isPomCritical:
          description: Measurement is critical or not
          example: 'true'
          type: boolean
        pom:
          description: Point of measurement of the measurement chart
          example: Chest
          minLength: 1
          type: string
        setId:
          description: The external id of the measurement set. Use this field when you want to group POMs in a specified set
          example: Set 1
          type:
          - string
          - 'null'
        sizes:
          description: Sizes in a measurement chart
          items:
            $ref: '#/components/schemas/MeasurementItemDetail'
          type: array
        tolerance:
          description: Tolerance Lower & Upper of a point of measurement, only use this attribute if your organization has not enabled Unequal Tolerance
          example: 1/4
          type:
          - number
          - 'null'
        toleranceLower:
          description: Tolerance Lower, use this attribute together with toleranceUpper if your organization has enabled Unequal Tolerance
          example: 1/4
          type:
          - number
          - 'null'
        toleranceUpper:
          description: Tolerance Upper, use this attribute together with toleranceLower if your organization has enabled Unequal Tolerance
          example: 3/4
          type:
          - number
          - 'null'
        unit:
          description: 'Unit used for measurement. Current values: inch, cm, mm'
          example: cm
          type: string
      required:
      - caption
      - pom
      - unit
      type: object
    MeasurementListInfo:
      properties:
        clientUpdatedDate:
          description: The last updated date from the client system of the Measurement Chart
          example: '2019-02-20T06:37:18.048000+00:00'
          format: date-time
          type: string
        measurements:
          description: List of measurement charts
          items:
            $ref: '#/components/schemas/MeasurementResponse'
          type: array
        source:
          description: The source from which the Measurement Chart data comes
          example: SPARK
          type:
          - string
          - 'null'
      type: object
    InternalApiError:
      properties:
        errorCode:
          example: Generic
          type: string
        errors:
          example:
            system:
            - Internal error detail message
          type: object
        message:
          example: Internal server error
          type: string
      type: object