Nory Inventory Orders API

The Inventory Orders API from Nory — 2 operation(s) for inventory orders.

Operations 3

GET /inventory/brands/{brandId}/branches/{branchId}/recommended-order Get recommended purchase orders for a branch
POST /inventory/brands/{brandId}/branches/{branchId}/recommended-order Generate recommended purchase orders for a branch
POST /inventory/brands/{brandId}/branches/{branchId}/recommended-order/accept Accept (or amend) a recommended order and create a purchase order

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/nory-inventory-orders-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

nory-inventory-orders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nory Middleware - Sandbox Environment Authorization Inventory Orders API
  version: 1.0.0
  description: 'Nory '
servers:
- https://sandbox.nory.ai
- http://localhost:8000
tags:
- name: Inventory Orders
paths:
  /inventory/brands/{brandId}/branches/{branchId}/recommended-order:
    get:
      tags:
      - Inventory Orders
      name: RecommendedOrders
      summary: Get recommended purchase orders for a branch
      description: Returns recommended orders based on demand forecasting. Maps to inventory.handlers.recommended_order.get_recommended_orders.
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: brandId
        required: true
        schema:
          type: string
        description: External brand ID
      - in: path
        name: branchId
        required: true
        schema:
          type: string
        description: External branch ID
      - in: query
        name: start_date
        required: false
        schema:
          type: string
          format: date
        description: Start date for recommendations (defaults to today)
      - in: query
        name: end_date
        required: false
        schema:
          type: string
          format: date
        description: End date for recommendations (defaults to start_date + 14 days)
      - in: query
        name: operation
        required: false
        schema:
          type: string
          enum:
          - retrieve
          - generate
        description: Operation mode - "retrieve" returns cached orders, "generate" creates new recommendations (defaults to "retrieve"). Generate is deprecated - use POST instead.
      responses:
        '200':
          description: JSON object containing the recommended orders and details of data they were based on
        '400':
          description: Incorrect data supplied
        '401':
          description: No auth token
        '403':
          description: JWT token and username from client don't match
        '500':
          description: Unexpected error
    post:
      tags:
      - Inventory Orders
      name: GenerateRecommendedOrders
      summary: Generate recommended purchase orders for a branch
      description: Generates new recommended orders based on demand forecasting. Maps to inventory.handlers.recommended_order.generate_recommended_orders_handler.
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: brandId
        required: true
        schema:
          type: string
        description: External brand ID
      - in: path
        name: branchId
        required: true
        schema:
          type: string
        description: External branch ID
      - in: query
        name: start_date
        required: false
        schema:
          type: string
          format: date
        description: Start date for recommendations (defaults to today)
      - in: query
        name: end_date
        required: false
        schema:
          type: string
          format: date
        description: End date for recommendations (defaults to start_date + 14 days)
      responses:
        '200':
          description: JSON object containing the generated recommended orders
        '401':
          description: No auth token
        '403':
          description: JWT token and username from client don't match
        '500':
          description: Unexpected error
  /inventory/brands/{brandId}/branches/{branchId}/recommended-order/accept:
    post:
      tags:
      - Inventory Orders
      name: AcceptRecommendedOrder
      summary: Accept (or amend) a recommended order and create a purchase order
      description: Accepts a recommended order, optionally with edits, creates a PurchaseOrder linked to the recommended order, and returns the PO along with a classification ("accepted" when submitted quantities match the recommendation exactly, "amended" when the user edited them). Maps to inventory.handlers.recommended_order.recommended_order_accept_post.
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: brandId
        required: true
        schema:
          type: string
        description: External brand ID
      - in: path
        name: branchId
        required: true
        schema:
          type: string
        description: External branch ID
      responses:
        '200':
          description: Object containing the created purchase_order and a classification of "accepted" or "amended"
        '400':
          description: Validation error
        '401':
          description: No auth token
        '403':
          description: JWT token and username from client don't match
        '404':
          description: Recommended order not found or stale
        '409':
          description: Recommended order is mid-creation or already submitted
        '500':
          description: Unexpected error
components:
  securitySchemes:
    bearerAuth:
      type: apiKey
      name: Authorization
      scheme: bearer
      in: header