Optoro Drop Shipment Confirmation API

The Drop Shipment Confirmation API from Optoro — 1 operation(s) for drop shipment confirmation.

Operations 1

POST /drop_shipment_confirmation POST a Drop Shipment Confirmation #

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/optoro-drop-shipment-confirmation-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

optoro-drop-shipment-confirmation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Drop Shipment Confirmation API
  version: 1.0.0
  contact:
    name: Fulfillment
  description: '## Introduction

    The Drop Ship is used to communicate to the client once an order has been shipped or cancelled from OptiTurn, to close an order within the client''s OMS.'
servers:
- url: https://developer.optoro.com
tags:
- name: Drop Shipment Confirmation
paths:
  /drop_shipment_confirmation:
    post:
      summary: POST a Drop Shipment Confirmation
      operationId: drop_shipment_confirmation
      description: 'Client endpoint to which Drop Shipment Confirmation data is posted to.


        This endpoint along with any authentication mechanisms needed must be communicated to client''s account manager.'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DropShipmentConfirmation'
      responses:
        '200':
          description: Success. Optoro recommends client APIs respond with a JSON-structured object. This is used for debugging purposes only so this guidance is technically optional.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Success
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '422':
          description: Validation failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationFailure'
        '500':
          $ref: '#/components/responses/InternalServerError'
        '502':
          $ref: '#/components/responses/ServerUnavailable'
      tags:
      - Drop Shipment Confirmation
components:
  responses:
    BadRequest:
      description: Bad Request
    ServerUnavailable:
      description: Client Server Unavailable
    InternalServerError:
      description: Internal Server Error
    Unauthorized:
      description: Not Authorized. A new authentication token will be requested from the client's services and the request will be retried.
  schemas:
    DropShipmentConfirmation:
      type: object
      description: Drop Shipment Confirmation Data
      properties:
        shipment:
          type: object
          properties:
            id:
              type: integer
              description: An object's database primary key. Do not rely on this value!
              example: 1
            client_identifier:
              type: string
              description: client_identifier associated with the shipment which is also associated with the order
              example: 3fda4c37-6830-469f-b343-9d1a482a97fd
            channel:
              type: string
              description: Inventory channel name
              example: rts_drop_ship
            carrier:
              type: string
              description: Carrier used in shipping.
              example: UPS
            shipping_method:
              type: string
              description: Name of the shipping method used for the shipment
              example: UPS Ground
            tracking_number:
              type: string
              description: Shipment tracking number
              example: 1Z2E07A20302245707
            billed_weight:
              type: number
              description: Weight of the shipment in pounds
              example: 10
            shipping_cost_cents:
              type: integer
              description: Actual shipping cost paid to ship the package
              example: 1000
            packing_slip_identifier:
              type: string
              description: Identifier to be printed on the packing slip barcode. If null, client_identifier will be the default barcode.
              example: '1497064'
            shipment_items:
              type: array
              description: Items included in this shipment
              items:
                type: object
                properties:
                  id:
                    type: integer
                    description: An object's database primary key. Do not rely on this value!
                    minimum: 1
                  client_identifier:
                    type: string
                    description: Client_identifier associated with the shipment item which is also associated with the order item
                    example: 296f0b98-7bc5-4750-8cb9-2e36db1ff766
                  quantity:
                    type: integer
                    description: Shipped item quantity
                    minimum: 1
                  created_at:
                    type: string
                    format: date-time
                    description: Date in ISO 8601 format in UTC
                  updated_at:
                    type: string
                    format: date-time
                    description: Date in ISO 8601 format in UTC
              additionalProperties: false
              required:
              - client_identifier
              - quantity
            created_at:
              type: string
              format: date-time
              description: Date in ISO 8601 format in UTC
            updated_at:
              type: string
              format: date-time
              description: Date in ISO 8601 format in UTC
          additionalProperties: false
          required:
          - client_identifier
          - channel
          - carrier
          - shipping_method
          - tracking_number
          - billed_weight
          - shipping_cost_cents
          - shipment_items
    ValidationFailure:
      type: object
      required:
      - message
      - errors
      properties:
        message:
          type: string
          description: Summary of the error(s).
        errors:
          type: array
          description: Contains one or more error objects.
          items:
            type: object
            required:
            - field
            - code
            description: Describes a single validation failure.
            properties:
              field:
                type: string
                description: JSON path of the field that failed validation.
              code:
                type: string
                description: Categorization of validation failure. Defaults to 'invalid'.
                enum:
                - missing_field
                - invalid_type
                - invalid