Prodsmart Production Orders API

The Production Orders API from Prodsmart — 6 operation(s) for production orders.

Operations 12

POST /api/v1/production-orders/ Create production order #
GET /api/v1/production-orders/ List production orders #
GET /api/v1/production-orders/{id} Retrieve production order #
PUT /api/v1/production-orders/{id} Update production order #
DELETE /api/v1/production-orders/{id} Remove production order #
POST /api/v1/production-orders/{id}/problem Notify production issue #
POST /api/v1/production-orders/{id}/activate Activate production order #
POST /api/v1/production-orders/{id}/files Create production order file #
GET /api/v1/production-orders/{id}/files List production order files #
GET /api/v1/production-orders/{id}/files/{file_id} Retrieve production order file #
PUT /api/v1/production-orders/{id}/files/{file_id} Update production order file #
DELETE /api/v1/production-orders/{id}/files/{file_id} Remove production order file #

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/prodsmart-production-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

prodsmart-production-orders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Autodesk Fusion Operations (Prodsmart) API v1 Authorization Production Orders API
  version: v1
  description: REST API for Autodesk Fusion Operations (formerly Prodsmart), a cloud manufacturing execution / production management platform for small and mid-sized manufacturers. This v1 surface is documented publicly and is marked DEPRECATED by Autodesk, which recommends migrating to the v2 API on Autodesk Platform Services (APS). Authentication is HTTP Basic (API Key as username, API Secret as password) which mints a 2-hour token; most endpoints also accept an access_token query parameter. Requests and responses are JSON; dates are ISO 8601. Rate limit is 120 requests per minute per company.
  contact:
    name: Autodesk Fusion Operations
    url: https://help.fusionoperations.autodesk.com/
  x-rate-limit: 120 requests per minute per company
  x-deprecated-notice: v1 is deprecated; migrate to v2 at https://aps.autodesk.com/en/docs/fusion-operations/v2
servers:
- url: https://fusionoperations.autodesk.com
  description: Production (Autodesk Fusion Operations)
security:
- basicAuth: []
- accessToken: []
tags:
- name: Production Orders
paths:
  /api/v1/production-orders/:
    post:
      tags:
      - Production Orders
      operationId: createProductionOrder
      summary: Create production order
      responses:
        '201':
          description: Created
    get:
      tags:
      - Production Orders
      operationId: listProductionOrders
      summary: List production orders
      responses:
        '200':
          description: OK
  /api/v1/production-orders/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Production Orders
      operationId: getProductionOrder
      summary: Retrieve production order
      responses:
        '200':
          description: OK
    put:
      tags:
      - Production Orders
      operationId: updateProductionOrder
      summary: Update production order
      responses:
        '200':
          description: OK
    delete:
      tags:
      - Production Orders
      operationId: deleteProductionOrder
      summary: Remove production order
      responses:
        '204':
          description: No Content
  /api/v1/production-orders/{id}/problem:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    post:
      tags:
      - Production Orders
      operationId: notifyProductionOrderProblem
      summary: Notify production issue
      responses:
        '200':
          description: OK
  /api/v1/production-orders/{id}/activate:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    post:
      tags:
      - Production Orders
      operationId: activateProductionOrder
      summary: Activate production order
      responses:
        '200':
          description: OK
  /api/v1/production-orders/{id}/files:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    post:
      tags:
      - Production Orders
      operationId: createProductionOrderFile
      summary: Create production order file
      responses:
        '201':
          description: Created
    get:
      tags:
      - Production Orders
      operationId: listProductionOrderFiles
      summary: List production order files
      responses:
        '200':
          description: OK
  /api/v1/production-orders/{id}/files/{file_id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    - name: file_id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Production Orders
      operationId: getProductionOrderFile
      summary: Retrieve production order file
      responses:
        '200':
          description: OK
    put:
      tags:
      - Production Orders
      operationId: updateProductionOrderFile
      summary: Update production order file
      responses:
        '200':
          description: OK
    delete:
      tags:
      - Production Orders
      operationId: deleteProductionOrderFile
      summary: Remove production order file
      responses:
        '204':
          description: No Content
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic authentication using the API Key as username and API Secret as password. Used to mint a token valid for 2 hours.
    accessToken:
      type: apiKey
      in: query
      name: access_token
      description: Token passed as the access_token query parameter on most endpoints.