Maven Machines Shipment Locations API

The shipment-locations API from Maven Machines — 1 operation(s) for shipment-locations.

Operations 1

POST /shipment-locations POST /shipment-locations #

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/maven-machines-shipment-locations-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

maven-machines-shipment-locations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: APIs Shipment Locations API
  description: Documentation for Shipment Locations APIs
  version: '1.0'
  contact: {}
servers:
- url: https://integrations.mavenmachines.com
tags:
- name: shipment-locations
paths:
  /shipment-locations:
    post:
      operationId: ShipmentLocationsController_upsertShipmentLocations
      summary: POST /shipment-locations
      description: "\n    Enables adding or updating shipment(s) current and/or moveTo locations.\n    "
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpsertShipmentLocationsDto'
      responses:
        '202':
          description: ''
        '400':
          description: When a request to upsert shipment(s) locations fails due to wrong client input
        '500':
          description: Unknown error response from the server
      tags:
      - shipment-locations
      security:
      - api_key: []
components:
  schemas:
    UpsertShipmentLocationsDto:
      type: object
      properties:
        shipmentProNumbers:
          description: Array of shipment PRO numbers
          type: array
          items:
            type: string
        shipmentReferenceNumbers:
          description: Array of shipment reference numbers
          type: array
          items:
            type: string
        currentLocation:
          allOf:
          - $ref: '#/components/schemas/FacilityLocation'
          - description: Facility location where shipment(s) are
        moveToLocation:
          allOf:
          - $ref: '#/components/schemas/FacilityLocation'
          - description: Facility location where shipment(s) should be moved to
    FacilityLocation:
      type: object
      properties:
        name:
          type: string
          description: 'Name of facility location. Example: ''1'' or ''10'''
        type:
          type: string
          description: 'Type of facility location. Example: ''door''/''aisle''/''bay'''
          enum:
          - door
          - aisle
          - bay
        terminalCode:
          type: string
          description: Company terminal identifier
      required:
      - name
      - type
      - terminalCode
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: apiKey
x-readme:
  explorer-enabled: true
  proxy-enabled: true