manhattan-associates Promising API

Order promising and delivery date estimation

Operations 1

POST /promise/check Check order promise (ATP) #

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/manhattan-associates-promising-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

manhattan-associates-promising-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Manhattan Active Omni Order Management Inbound Promising API
  description: Manhattan Active Omni APIs enable omnichannel order management and fulfillment, including order promising, order orchestration, inventory availability, and customer service operations for retail and distribution.
  version: 1.0.0
  contact:
    name: Manhattan Associates Developer Support
    url: https://developer.manh.com/
  license:
    name: Proprietary
    url: https://www.manh.com/terms-of-use
servers:
- url: https://api.developer.manh.com/omni/v1
  description: Manhattan Active Omni REST API
security:
- OAuth2ClientCredentials: []
tags:
- name: Promising
  description: Order promising and delivery date estimation
paths:
  /promise/check:
    post:
      operationId: checkOrderPromise
      summary: Check order promise (ATP)
      description: Run order promising logic to determine earliest delivery dates, best fulfillment nodes, and shipping options without committing inventory.
      tags:
      - Promising
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PromiseRequest'
      responses:
        '200':
          description: Promise options
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PromiseResponse'
components:
  schemas:
    PromiseRequest:
      type: object
      required:
      - lines
      - deliveryAddress
      properties:
        lines:
          type: array
          items:
            type: object
            required:
            - itemId
            - quantity
            properties:
              itemId:
                type: string
              quantity:
                type: number
        deliveryAddress:
          $ref: '#/components/schemas/Address'
        channelId:
          type: string
        requestedDeliveryDate:
          type: string
          format: date
    Address:
      type: object
      required:
      - street1
      - city
      - state
      - postalCode
      - country
      properties:
        firstName:
          type: string
        lastName:
          type: string
        street1:
          type: string
        street2:
          type: string
        city:
          type: string
        state:
          type: string
        postalCode:
          type: string
        country:
          type: string
        phone:
          type: string
    PromiseResponse:
      type: object
      properties:
        options:
          type: array
          items:
            type: object
            properties:
              fulfillmentType:
                type: string
              nodeId:
                type: string
              estimatedDeliveryDate:
                type: string
                format: date
              shippingMethod:
                type: string
              shippingCost:
                type: number
              lines:
                type: array
                items:
                  type: object
                  properties:
                    itemId:
                      type: string
                    promisedQuantity:
                      type: number
  securitySchemes:
    OAuth2ClientCredentials:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://auth.developer.manh.com/oauth2/token
          scopes:
            orders:read: Read order data
            orders:write: Create and modify orders
            inventory:read: Read inventory positions
externalDocs:
  description: Manhattan Active Omni Developer Portal
  url: https://omni.developer.manh.com/