e2open Shipping Instructions API

Bill of lading shipping instructions

Operations 1

POST /shipping-instructions Submit shipping instructions (SI) #

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/e2open-shipping-instructions-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

e2open-shipping-instructions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: INTTRA Ocean Execution API (e2open) Bookings Shipping Instructions API
  description: INTTRA (now part of e2open) provides ocean execution APIs for the world's largest multi-carrier e-commerce platform for global shipping. The RESTful API uses HTTPS with JSON for booking, ocean schedules, rates, and visibility/track and trace products. Authentication requires a bearer token obtained from the identity service before making API requests.
  version: 1.0.0
  contact:
    name: INTTRA / e2open Support
    url: https://knowledge.e2open.com/knowledgecenter/inttra-resources/
  license:
    name: e2open Terms
    url: https://www.inttra.com/legal/
servers:
- url: https://api.inttra.com/v1
  description: INTTRA Ocean Execution API Production
security:
- bearerAuth: []
tags:
- name: Shipping Instructions
  description: Bill of lading shipping instructions
paths:
  /shipping-instructions:
    post:
      operationId: submitShippingInstructions
      summary: Submit shipping instructions (SI)
      description: Submits shipping instructions (bill of lading instructions) to the carrier for a confirmed booking. Includes cargo description, consignee, notify parties, and special instructions.
      tags:
      - Shipping Instructions
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ShippingInstructionsRequest'
      responses:
        '201':
          description: Shipping instructions submitted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShippingInstructions'
components:
  schemas:
    TradeParty:
      type: object
      properties:
        name:
          type: string
        address:
          type: string
        city:
          type: string
        country:
          type: string
          pattern: ^[A-Z]{2}$
        email:
          type: string
          format: email
        phone:
          type: string
    ShippingInstructions:
      allOf:
      - $ref: '#/components/schemas/ShippingInstructionsRequest'
      - type: object
        properties:
          siReference:
            type: string
          status:
            type: string
            enum:
            - SUBMITTED
            - ACCEPTED
            - REJECTED
            - PROCESSED
          submittedAt:
            type: string
            format: date-time
    ShippingInstructionsRequest:
      type: object
      required:
      - bookingId
      - shipper
      - consignee
      - cargoDescription
      properties:
        bookingId:
          type: string
        shipper:
          $ref: '#/components/schemas/TradeParty'
        consignee:
          $ref: '#/components/schemas/TradeParty'
        notifyParty:
          $ref: '#/components/schemas/TradeParty'
        cargoDescription:
          type: string
        hsCode:
          type: string
          description: Harmonized System tariff code
        grossWeightKg:
          type: number
        numberOfPackages:
          type: integer
        packageType:
          type: string
        marksAndNumbers:
          type: string
        specialInstructions:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token obtained from the INTTRA identity service