blue-yonder website screenshot

blue-yonder

Transforming supply chains through an end-to-end platform for planning, execution, commerce and returns.

4 APIs 0 Features

APIs

Blue Yonder Demand Planning API

The Blue Yonder Demand Planning API enables access to demand forecasting models, statistical baselines, and demand signals for retail and manufacturing supply chains. REST APIs ...

Blue Yonder Warehouse Management API

The Blue Yonder Warehouse Management API provides access to warehouse operations data including inventory positions, task management, labor optimization, and fulfillment workflo...

Blue Yonder Transportation Management API

The Blue Yonder Transportation Management API enables access to transportation planning, carrier management, load optimization, and freight audit capabilities. REST APIs support...

Blue Yonder Connect API & Expansion Pack

Blue Yonder Connect - API & Expansion Pack provides an advanced integration suite with pre-built MuleSoft connectors, enhanced API management tools, and higher throughput capaci...

Collections

Pricing Plans

Rate Limits

Blue Yonder Rate Limits

1 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Blue Yonder Context

0 classes · 4 properties

JSON-LD

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🌐
Portal
Portal
🔗
Documentation
Documentation
🚀
GettingStarted
GettingStarted
📰
Blog
Blog
🔗
OpenAPI
OpenAPI
🔗
JSONSchema
JSONSchema
🔗
JSONLDContext
JSONLDContext

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Blue Yonder Warehouse Management API
  version: 1.0.0
request:
  auth:
    type: oauth2
    flow: client_credentials
    accessTokenUrl: https://auth.blueyonder.example.com/oauth/token
    credentials:
      clientId: '{{clientId}}'
      clientSecret: '{{clientSecret}}'
items:
- info:
    name: Inventory
    type: folder
  items:
  - info:
      name: List inventory positions
      type: http
    http:
      method: GET
      url: https://api.blueyonder.example.com/wms/v1/inventory
      params:
      - name: locationId
        value: ''
        type: query
        description: Filter by warehouse location
      - name: itemId
        value: ''
        type: query
        description: Filter by item/SKU identifier
      - name: status
        value: ''
        type: query
      - name: page
        value: ''
        type: query
      - name: pageSize
        value: ''
        type: query
    docs: Retrieve current inventory levels and positions across warehouse locations.
  - info:
      name: Get inventory for item
      type: http
    http:
      method: GET
      url: https://api.blueyonder.example.com/wms/v1/inventory/:itemId
      params:
      - name: itemId
        value: ''
        type: path
    docs: Get inventory levels and all warehouse locations for a specific item/SKU.
- info:
    name: Receipts
    type: folder
  items:
  - info:
      name: List receipts
      type: http
    http:
      method: GET
      url: https://api.blueyonder.example.com/wms/v1/receipts
      params:
      - name: status
        value: ''
        type: query
      - name: fromDate
        value: ''
        type: query
      - name: toDate
        value: ''
        type: query
    docs: Retrieve inbound receipts (purchase orders and ASN receipts).
  - info:
      name: Create inbound receipt
      type: http
    http:
      method: POST
      url: https://api.blueyonder.example.com/wms/v1/receipts
      body:
        type: json
        data: '{}'
    docs: Create a new inbound receipt for an expected delivery (ASN or PO receipt).
- info:
    name: Orders
    type: folder
  items:
  - info:
      name: List outbound orders
      type: http
    http:
      method: GET
      url: https://api.blueyonder.example.com/wms/v1/orders
      params:
      - name: status
        value: ''
        type: query
      - name: priority
        value: ''
        type: query
    docs: Retrieve outbound fulfillment orders.
  - info:
      name: Create outbound order
      type: http
    http:
      method: POST
      url: https://api.blueyonder.example.com/wms/v1/orders
      body:
        type: json
        data: '{}'
    docs: Create a new outbound fulfillment order for warehouse picking and shipping.
- info:
    name: Tasks
    type: folder
  items:
  - info:
      name: List warehouse tasks
      type: http
    http:
      method: GET
      url: https://api.blueyonder.example.com/wms/v1/tasks
      params:
      - name: taskType
        value: ''
        type: query
      - name: assignedTo
        value: ''
        type: query
      - name: status
        value: ''
        type: query
    docs: Retrieve warehouse tasks (pick, put, move, count) for assignment and tracking.
bundled: true