Manufacturing Quickstart
Getting started with the Stateset Manufacturing and Production API
Stateset One provides a REST and GraphQL API for Manufacting and Production
The Manufacturing & Production module in Stateset includes various objects that facilitate manufacturing and production processes. These objects typically encompass:
- Purchase Orders
- Bill of Materials (BOM)
- Work Orders
- Manufacturing Orders
- Picks
- Cycle Counts
- Inventory
Manufacturing and Production Overview
Manufacturing production refers to the methodology of how to most efficiently manufacture and produce goods for sale, beyond just a bill of materials. Production management includes responsibility for product and process design, quality control, and workforce supervision.
Challenges with Manufacturing and Production
Manufacturing and production processes are often complex and involve many different stakeholders, including suppliers, manufacturers, distributors, and customers. These processes are often managed using a combination of spreadsheets, emails, and phone calls, which can lead to inefficiencies, errors, and delays.
Stateset’s Manufacturing and Production Solution
Stateset’s Manufacturing and Production module provides a single source of truth for all stakeholders involved in the manufacturing and production process. This module enables the creation, tracking, and management of purchase orders, bills of materials, work orders, manufacturing orders, picks, cycle counts, and inventory, ensuring efficient production execution.
Quickstart Guide
-
Setup your company’s Stateset One instance by signing up at stateset.io/signup
-
Create a new API Key in the Stateset Cloud Console cloud.stateset.com/api-keys
-
Install the stateset-node SDK in your project:
npm install stateset-node
- Create a new Bill of Materials
import { stateset } from 'stateset-node'('API_KEY');
const created = await stateset.billofmaterials.create(
'bom_ODkRWQtx9NVsRX'
);
- Create a Work Order
Work Orders serve as instructions for the production team, providing guidance on the specific tasks, operations, and steps needed to manufacture a product. Stateset enables the creation, tracking, and management of work orders, ensuring efficient production execution.
import { stateset } from 'stateset-node'('API_KEY');
const created = await stateset.workorder.create(
"work_order_and_work_order_line_items": {
"id": id,
"type": type,
"status": status,
"priority": priority,
"number": number,
"site": site,
"bill_of_material_number": bill_of_materials_number,
"work_order_line_items": {
"data": JSON.parse(bill_of_material_line_item_data)
}
}
);
- Create a Manufacturing Order
Manufacturing Orders are created from Work Orders and are used to track the production of a product. Stateset enables the creation, tracking, and management of manufacturing orders, ensuring efficient production execution.
import { stateset } from 'stateset-node'('API_KEY');
const created = await stateset.manufacturingorder.create(
"manufacturing_order_and_manufacturing_order_line_items": {
"id": id,
"type": type,
"status": status,
"priority": priority,
"number": number,
"site": site,
"work_order_number": work_order_number,
"manufacturing_order_line_items": {
"data": JSON.parse(work_order_line_item_data)
}
}
);
Manufacturing and Production Support
If you have any questions or need help, please contact us at: support@stateset.io