Invendor WMSLocations API

The WMSLocations API from Invendor — 9 operation(s) for wmslocations.

Operations 14

GET /v1/WMSLocations/{locationId}/areas Get all location areas
POST /v1/WMSLocations/{locationId}/areas Create new area for location. (All the lockers etc must be defined as areas)
GET /v1/WMSLocations/{locationId}/areas/{areaId} Get location area details
PUT /v1/WMSLocations/{locationId}/areas/{areaId} Update WMSArea
DELETE /v1/WMSLocations/{locationId}/areas/{areaId} Delete an selected area
POST /v1/WMSLocations/areas/cabinet/attach Attach WMS location to cabinet #
GET /v1/WMSLocations/{locationId}/addresses Get location wms addresses
POST /v1/WMSLocations/{locationId}/addresses Create new wh address for area.
POST /v1/WMSLocations/{locationId}/addresses/bulk Bulk insert of wh address for area.
DELETE /v1/WMSLocations/{locationId}/addresses/{wmsLocationId} Delete wh address in a location by address.
POST /v1/WMSLocations/{locationId}/addresses/generate Generate wh aadresses on predefined parameters
POST /v1/WMSLocations/{locationId}/addresses/delete Delete selected or all wh aadresses in a location
GET /v1/WMSLocations/validate Validates whether a single WMS location ID exists for a given location
POST /v1/WMSLocations/validate Validates multiple WMS location IDs for a given location. Returns only invalid IDs.

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-wmslocations-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-wmslocations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: IO.Common Accounts WMS Locations 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: WMSLocations
paths:
  /v1/WMSLocations/{locationId}/areas:
    get:
      tags:
      - WMSLocations
      summary: Get all location areas
      parameters:
      - name: locationId
        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
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    post:
      tags:
      - WMSLocations
      summary: Create new area for location. (All the lockers etc must be defined as areas)
      parameters:
      - name: locationId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        description: ''
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateWMSAreaRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateWMSAreaRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateWMSAreaRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateWMSAreaRequest'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Int32ResourceCreatedResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/WMSLocations/{locationId}/areas/{areaId}:
    get:
      tags:
      - WMSLocations
      summary: Get location area details
      parameters:
      - name: locationId
        in: path
        description: LocationId
        required: true
        schema:
          type: integer
          format: int32
      - name: areaId
        in: path
        description: AreaId
        required: true
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    put:
      tags:
      - WMSLocations
      summary: Update WMSArea
      parameters:
      - name: locationId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: areaId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        description: ''
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateWMSAreaRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateWMSAreaRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateWMSAreaRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/UpdateWMSAreaRequest'
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    delete:
      tags:
      - WMSLocations
      summary: Delete an selected area
      parameters:
      - name: locationId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: areaId
        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
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/WMSLocations/areas/cabinet/attach:
    post:
      tags:
      - WMSLocations
      summary: Attach WMS location to cabinet
      operationId: Attach WMS location to cabinet
      parameters:
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        description: JSON object
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/AttachWmsLocationToCabinetRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/AttachWmsLocationToCabinetRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/AttachWmsLocationToCabinetRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/AttachWmsLocationToCabinetRequest'
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/WMSLocations/{locationId}/addresses:
    get:
      tags:
      - WMSLocations
      summary: Get location wms addresses
      parameters:
      - name: locationId
        in: path
        description: Location id
        required: true
        schema:
          type: integer
          format: int32
      - name: WMSAreaId
        in: query
        schema:
          type: string
      - name: Rack
        in: query
        schema:
          type: integer
          format: int32
      - name: Shelf
        in: query
        schema:
          type: integer
          format: int32
      - name: Bin
        in: query
        schema:
          type: integer
          format: int32
      - name: WithoutGravity
        in: query
        schema:
          type: boolean
      - 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/WMSLocationResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    post:
      tags:
      - WMSLocations
      summary: Create new wh address for area.
      parameters:
      - name: locationId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        description: ''
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateAreaWMSLocationRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateAreaWMSLocationRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateAreaWMSLocationRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/CreateAreaWMSLocationRequest'
      responses:
        '201':
          description: Created
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/WMSLocations/{locationId}/addresses/bulk:
    post:
      tags:
      - WMSLocations
      summary: Bulk insert of wh address for area.
      parameters:
      - name: locationId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - 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/CreateAreaWMSLocationRequest'
          application/json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/CreateAreaWMSLocationRequest'
          text/json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/CreateAreaWMSLocationRequest'
          application/*+json; x-api-version=1.0:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/CreateAreaWMSLocationRequest'
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/WMSLocations/{locationId}/addresses/{wmsLocationId}:
    delete:
      tags:
      - WMSLocations
      summary: Delete wh address in a location by address.
      parameters:
      - name: locationId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: wmsLocationId
        in: path
        description: ''
        required: true
        schema:
          type: string
      - 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/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/WMSLocations/{locationId}/addresses/generate:
    post:
      tags:
      - WMSLocations
      summary: Generate wh aadresses on predefined parameters
      parameters:
      - name: locationId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        description: ''
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/GenerateWMSLocationsRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/GenerateWMSLocationsRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/GenerateWMSLocationsRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/GenerateWMSLocationsRequest'
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/WMSLocations/{locationId}/addresses/delete:
    post:
      tags:
      - WMSLocations
      summary: Delete selected or all wh aadresses in a location
      parameters:
      - name: locationId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: Account
        in: query
        description: Account
        schema:
          title: Account
          type: int
      requestBody:
        description: ''
        content:
          application/json-patch+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/BulkDeleteWMSLocationsRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/BulkDeleteWMSLocationsRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/BulkDeleteWMSLocationsRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/BulkDeleteWMSLocationsRequest'
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
  /v1/WMSLocations/validate:
    get:
      tags:
      - WMSLocations
      summary: Validates whether a single WMS location ID exists for a given location
      parameters:
      - name: locationId
        in: query
        schema:
          type: integer
          format: int32
      - name: wmsLocationId
        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: boolean
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.common
    post:
      tags:
      - WMSLocations
      summary: Validates multiple WMS location IDs for a given location. Returns only invalid IDs.
      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/ValidateWmsLocationIdsRequest'
          application/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/ValidateWmsLocationIdsRequest'
          text/json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/ValidateWmsLocationIdsRequest'
          application/*+json; x-api-version=1.0:
            schema:
              $ref: '#/components/schemas/ValidateWmsLocationIdsRequest'
      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
components:
  schemas:
    Bin:
      type: object
      properties:
        index:
          type: integer
          format: int32
        code:
          type:
          - string
          - 'null'
        items:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/BinItem'
        itemParam:
          $ref: '#/components/schemas/CabinetLocationItemsParam'
      additionalProperties: false
    Shelf:
      type: object
      properties:
        index:
          type: integer
          format: int32
        bins:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Bin'
        code:
          type:
          - string
          - 'null'
        slot:
          type: integer
          format: int32
      additionalProperties: false
    WMSLocationResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
        wmsLocationId:
          type:
          - string
          - 'null'
        areaId:
          type:
          - integer
          - 'null'
          format: int32
        wmsAreaId:
          type:
          - string
          - 'null'
        wmsAreaType:
          type:
          - integer
          - 'null'
          format: int32
        rack:
          type:
          - integer
          - 'null'
          format: int32
        shelf:
          type:
          - integer
          - 'null'
          format: int32
        bin:
          type:
          - integer
          - 'null'
          format: int32
      additionalProperties: false
    ShelfBinValueTuple:
      type: object
      additionalProperties: false
    UpdateWMSAreaRequest:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/WMSAreaType'
        properties:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
      additionalProperties: false
    BinItem:
      type: object
      properties:
        barcode:
          type:
          - string
          - 'null'
        weight:
          type: number
          format: double
        unit:
          type:
          - string
          - 'null'
        weightType:
          $ref: '#/components/schemas/WeightType'
        quantity:
          type: number
          format: double
        itemCode:
          type:
          - string
          - 'null'
        itemName:
          type:
          - string
          - 'null'
        isWeightAdjusted:
          type: boolean
      additionalProperties: false
    WMSAreaType:
      enum:
      - 0
      - 1
      - 2
      type: integer
      format: int32
    Compartment:
      type: object
      properties:
        index:
          type: integer
          format: int32
        shelves:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Shelf'
        bins:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ShelfBinValueTuple'
          readOnly: true
      additionalProperties: false
    CreateAreaWMSLocationRequest:
      type: object
      properties:
        wmsLocationId:
          type:
          - string
          - 'null'
        areaId:
          type:
          - integer
          - 'null'
          format: int32
        rack:
          type:
          - integer
          - 'null'
          format: int32
        shelf:
          type:
          - integer
          - 'null'
          format: int32
        bin:
          type:
          - integer
          - 'null'
          format: int32
      additionalProperties: false
    AttachWmsLocationToCabinetRequest:
      type: object
      properties:
        areaId:
          type: integer
          format: int32
        deviceId:
          type: string
          format: uuid
      additionalProperties: false
    GenerateWMSLocationsRequest:
      type: object
      properties:
        areaId:
          type:
          - integer
          - 'null'
          format: int32
        rackCount:
          type:
          - integer
          - 'null'
          format: int32
        shelfCount:
          type:
          - integer
          - 'null'
          format: int32
        binCount:
          type:
          - integer
          - 'null'
          format: int32
        addressFormat:
          type:
          - string
          - 'null'
        includeAllAreas:
          type:
          - boolean
          - 'null'
      additionalProperties: false
    CabinetLocationItemsParam:
      type: object
      properties:
        id:
          type: integer
          format: int32
        barcode:
          type:
          - string
          - 'null'
        weight:
          type:
          - number
          - 'null'
          format: double
        unit:
          type:
          - string
          - 'null'
        weightType:
          $ref: '#/components/schemas/WeightType'
        quantity:
          type: number
          format: double
        itemCode:
          type:
          - string
          - 'null'
        itemName:
          type:
          - string
          - 'null'
        isWeightAdjusted:
          type: boolean
        bufferLevel:
          type:
          - number
          - 'null'
          format: double
        minOrderQty:
          type:
          - number
          - 'null'
          format: double
      additionalProperties: false
    WeightType:
      enum:
      - 0
      - 1
      type: integer
      format: int32
    BulkDeleteWMSLocationsRequest:
      type: object
      properties:
        locationId:
          type: integer
          format: int32
        areaId:
          type:
          - integer
          - 'null'
          format: int32
        wmsLocationIds:
          type:
          - array
          - 'null'
          items:
            type: integer
            format: int32
      additionalProperties: false
    Error:
      type: object
      properties:
        code:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
      additionalProperties: false
    Int32ResourceCreatedResponse:
      type: object
      properties:
        id:
          type: integer
          format: int32
      additionalProperties: false
    ApiErrorResponse:
      type: object
      properties:
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Error'
      additionalProperties: false
    ValidateWmsLocationIdsRequest:
      type: object
      properties:
        locationId:
          type: integer
          format: int32
        wmsLocationIds:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    CreateWMSAreaRequest:
      type: object
      properties:
        wmsAreaId:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/WMSAreaType'
        compartments:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Compartment'
      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