Invendor Orders API

The Orders API from Invendor — 15 operation(s) for orders.

Operations 18

GET /v1/Orders #
GET /v1/Orders/{orderId} #
PUT /v1/Orders/{orderId} #
DELETE /v1/Orders/{orderId} #
POST /v1/Orders/replenishment #
POST /v1/Orders/purchase #
POST /v1/Orders/{orderId}/confirm #
POST /v1/Orders/{orderId}/cancel #
POST /v1/Orders/{orderId}/ship #
POST /v1/Orders/{orderId}/receive #
POST /v1/Orders/{orderId}/line #
PUT /v1/Orders/{orderId}/lines #
POST /v1/Orders/{orderId}/line/{orderLineId}/cancel #
POST /v1/Orders/{orderId}/complete #
POST /v1/Orders/{orderId}/journal/reception #
POST /v1/Orders/location/param #
GET /v1/Orders/location/{locationId}/param #
DELETE /v1/Orders/location/{locationId}/param #

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-orders-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-orders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: IO.Common Accounts Orders 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: Orders
paths:
  /v1/Orders:
    get:
      tags:
      - Orders
      operationId: GetAllOrders
      parameters:
      - name: OrderType
        in: query
        schema:
          $ref: '#/components/schemas/OrderType'
      - name: ExcludeCompleted
        in: query
        schema:
          type: boolean
      - name: VendorAccountId
        in: query
        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:
                $ref: '#/components/schemas/OrderListResponsePagedResult'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Orders/{orderId}:
    get:
      tags:
      - Orders
      operationId: GetOrder
      parameters:
      - name: orderId
        in: path
        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/OrderDetailsResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    put:
      tags:
      - Orders
      operationId: UpdateOrderDetails
      parameters:
      - name: orderId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - 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/UpdateOrderDetailsRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateOrderDetailsRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateOrderDetailsRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateOrderDetailsRequest'
      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:
      - Orders
      operationId: DeleteOrder
      parameters:
      - name: orderId
        in: path
        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/Orders/replenishment:
    post:
      tags:
      - Orders
      operationId: CreateReplenishmentOrder
      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/CreateReplenishmentOrderRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateReplenishmentOrderRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateReplenishmentOrderRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateReplenishmentOrderRequest'
      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/Orders/purchase:
    post:
      tags:
      - Orders
      operationId: CreatePurchaseOrder
      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/CreatePurchaseOrderRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreatePurchaseOrderRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreatePurchaseOrderRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreatePurchaseOrderRequest'
      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/Orders/{orderId}/confirm:
    post:
      tags:
      - Orders
      operationId: ConfirmOrder
      parameters:
      - name: orderId
        in: path
        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/Orders/{orderId}/cancel:
    post:
      tags:
      - Orders
      operationId: CancelOrder
      parameters:
      - name: orderId
        in: path
        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/Orders/{orderId}/ship:
    post:
      tags:
      - Orders
      operationId: ShipOrder
      parameters:
      - name: orderId
        in: path
        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/Orders/{orderId}/receive:
    post:
      tags:
      - Orders
      operationId: ReceiveOrder
      parameters:
      - name: orderId
        in: path
        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/Orders/{orderId}/line:
    post:
      tags:
      - Orders
      operationId: CreateOrderLine
      parameters:
      - name: orderId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - 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/CreateOrderLineRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateOrderLineRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateOrderLineRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateOrderLineRequest'
      responses:
        '201':
          description: Created
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Orders/{orderId}/lines:
    put:
      tags:
      - Orders
      operationId: UpdateOrderLines
      parameters:
      - name: orderId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/UpdateOrderLineRequest'
          application/json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/UpdateOrderLineRequest'
          text/json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/UpdateOrderLineRequest'
          application/*+json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/UpdateOrderLineRequest'
      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/Orders/{orderId}/line/{orderLineId}/cancel:
    post:
      tags:
      - Orders
      operationId: CancelOrderLine
      parameters:
      - name: orderId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - name: orderLineId
        in: path
        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/Orders/{orderId}/complete:
    post:
      tags:
      - Orders
      operationId: CompleteOrder
      parameters:
      - name: orderId
        in: path
        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/Orders/{orderId}/journal/reception:
    post:
      tags:
      - Orders
      operationId: CreateReceptionJournal
      parameters:
      - name: orderId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - 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/CreateReceptionJournalForOrderRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateReceptionJournalForOrderRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateReceptionJournalForOrderRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateReceptionJournalForOrderRequest'
      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/Orders/location/param:
    post:
      tags:
      - Orders
      operationId: CreateOrUpdateOrderLocationParam
      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/CreateOrUpdateOrderLocationParamRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateOrUpdateOrderLocationParamRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateOrUpdateOrderLocationParamRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateOrUpdateOrderLocationParamRequest'
      responses:
        '201':
          description: Created
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/Orders/location/{locationId}/param:
    get:
      tags:
      - Orders
      operationId: GetOrderLocationParam
      parameters:
      - name: locationId
        in: path
        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/OrderLocationParamResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    delete:
      tags:
      - Orders
      operationId: DeleteOrderLocationParam
      parameters:
      - name: locationId
        in: path
        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
components:
  schemas:
    OrderListResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        orderNumber:
          type:
          - string
          - 'null'
        externalOrderNumber:
          type:
          - string
          - 'null'
        orderType:
          $ref: '#/components/schemas/OrderType'
        description:
          type:
          - string
          - 'null'
        orderDate:
          type: string
          format: date-time
        orderStatus:
          $ref: '#/components/schemas/OrderStatus'
        statusDate:
          type: string
          format: date-time
        buyerAccountId:
          type:
          - integer
          - 'null'
          format: int32
        buyerAccountName:
          type:
          - string
          - 'null'
        vendorAccountId:
          type:
          - integer
          - 'null'
          format: int32
        vendorAccountName:
          type:
          - string
          - 'null'
        isReplenishmentOrder:
          type: boolean
        createdOn:
          type:
          - string
          - 'null'
          format: date-time
        modifiedOn:
          type:
          - string
          - 'null'
          format: date-time
        locationName:
          type:
          - string
          - 'null'
      additionalProperties: false
    UpdateOrderLineRequest:
      type: object
      properties:
        id:
          type: integer
          format: int32
        itemId:
          type: integer
          format: int32
        inventDim:
          $ref: '#/components/schemas/InventDimDto'
        orderQty:
          type: number
          format: double
        firmedQty:
          type: number
          format: double
        shippedQty:
          type: number
          format: double
        receivedQty:
          type: number
          format: double
      additionalProperties: false
    CreateReceptionJournalForOrderRequest:
      type: object
      properties:
        operationId:
          type: integer
          format: int32
      additionalProperties: false
    OrderStatus:
      enum:
      - 0
      - 1
      - 2
      - 3
      - 4
      - 5
      type: integer
      format: int32
    UpdateOrderDetailsRequest:
      type: object
      properties:
        externalOrderNumber:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
        buyerAccountId:
          type:
          - integer
          - 'null'
          format: int32
        vendorAccountId:
          type:
          - integer
          - 'null'
          format: int32
      additionalProperties: false
    OrderLineType:
      enum:
      - 10
      - 20
      type: integer
      format: int32
    OrderListResponsePagedResult:
      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/OrderListResponse'
          readOnly: true
      additionalProperties: false
    OrderLineResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        itemId:
          type: integer
          format: int32
        itemCode:
          type:
          - string
          - 'null'
        itemName:
          type:
          - string
          - 'null'
        inventDimId:
          type: integer
          format: int32
        inventDim:
          $ref: '#/components/schemas/InventDimDto'
        lineType:
          $ref: '#/components/schemas/OrderLineType'
        lineStatus:
          $ref: '#/components/schemas/OrderLineStatus'
        orderQty:
          type: number
          format: double
        firmedQty:
          type: number
          format: double
        shippedQty:
          type: number
          format: double
        receivedQty:
          type: number
          format: double
        unitId:
          type:
          - string
          - 'null'
        transDate:
          type: string
          format: date-time
        receivedDate:
          type:
          - string
          - 'null'
          format: date-time
        statusDate:
          type: string
          format: date-time
      additionalProperties: false
    CreateReplenishmentOrderRequest:
      type: object
      properties:
        locationId:
          type: integer
          format: int32
        lines:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CreateReplenishmentOrderLine'
      additionalProperties: false
    OrderLocationParamResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        locationId:
          type: integer
          format: int32
        orderAutoShip:
          type: boolean
        partialFulFillmentAllowed:
          type: boolean
      additionalProperties: false
    CreateOrUpdateOrderLocationParamRequest:
      type: object
      properties:
        locationId:
          type: integer
          format: int32
        orderAutoShip:
          type: boolean
        partialFulFillmentAllowed:
          type: boolean
      additionalProperties: false
    CreatePurchaseOrderRequest:
      type: object
      properties:
        locationId:
          type: integer
          format: int32
        vendorId:
          type: integer
          format: int32
        buyerId:
          type: integer
          format: int32
        description:
          type:
          - string
          - 'null'
        lines:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CreatePurchaseOrderLine'
      additionalProperties: false
    OrderLineStatus:
      enum:
      - 0
      - 1
      - 2
      - 3
      - 4
      - 5
      type: integer
      format: int32
    OrderType:
      enum:
      - 10
      - 20
      - 40
      - 90
      type: integer
      format: int32
    Error:
      type: object
      properties:
        code:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
      additionalProperties: false
    InventDimDto:
      type: object
      properties:
        locationId:
          type: integer
          format: int32
        wmsLocationId:
          type:
          - string
          - 'null'
        batchId:
          type:
          - string
          - 'null'
      additionalProperties: false
    CreateReplenishmentOrderLine:
      type: object
      properties:
        itemId:
          type: integer
          format: int32
        inventDim:
          $ref: '#/components/schemas/InventDimDto'
        orderQty:
          type: number
          format: double
        unitId:
          type:
          - string
          - 'null'
        transDate:
          type: string
          format: date-time
      additionalProperties: false
    ApiErrorResponse:
      type: object
      properties:
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Error'
      additionalProperties: false
    CreateOrderLineRequest:
      type: object
      properties:
        orderId:
          type: integer
          format: int32
        transDate:
          type: string
          format: date-time
        itemId:
          type: integer
          format: int32
        inventDim:
          $ref: '#/components/schemas/InventDimDto'
        orderQty:
          type: number
          format: double
        unitId:
          type:
          - string
          - 'null'
      additionalProperties: false
    CreatePurchaseOrderLine:
      type: object
      properties:
        itemId:
          type: integer
          format: int32
        inventDim:
          $ref: '#/components/schemas/InventDimDto'
        orderQty:
          type: number
          format: double
        unitId:
          type:
          - string
          - 'null'
        transDate:
          type: string
          format: date-time
      additionalProperties: false
    OrderDetailsResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        orderNumber:
          type:
          - string
          - 'null'
        externalOrderNumber:
          type:
          - string
          - 'null'
        orderType:
          $ref: '#/components/schemas/OrderType'
        description:
          type:
          - string
          - 'null'
        orderDate:
          type: string
          format: date-time
        orderStatus:
          $ref: '#/components/schemas/OrderStatus'
        statusDate:
          type: string
          format: date-time
        buyerAccountId:
          type:
          - integer
          - 'null'
          format: int32
        buyerAccountName:
          type:
          - string
          - 'null'
        vendorAccountId:
          type:
          - integer
          - 'null'
          format: int32
        vendorAccountName:
          type:
          - string
          - 'null'
        isReplenishmentOrder:
          type: boolean
        createdOn:
          type:
          - string
          - 'null'
          format: date-time
        modifiedOn:
          type:
          - string
          - 'null'
          format: date-time
        orderLines:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/OrderLineResponse'
        locationId:
          type: integer
          format: int32
        locationName:
          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