Workflow for basic integration #
This is an integration workflow for a basic Skyplanner implementation using the Skyplanner REST API. In this guide, we use the Postman application to send requests to the API.
Kind reminder: The Skyplanner REST API is a benefit offered exclusively for premium members.
You can find the link to the API documentation from your Skyplanner installations home page:
Your API address should look like this: https://yourinstallation.skyplanner.app/production-planning/api/v3/workstations
Authentication to the API is done by Authorization-Token in the request header:
Contact your reseller or Skyplanner support to get your API token.
Integrating basic data to Skyplanner #
1.- Workstations
- Add the workstations using the workstations endpoint.
2.- Workstages
- Add the workstages using the workstages endpoint
3.- Products / Materials
- Add products and materials using the products endpoint
4.- Customers
- Add customers using the customers endpoint
5.- Orders
- Add orders using the phaser-orders endpoint
- Use the id you got from creating the Customer in the production_planning_customer_id field
6.- Order items
- User the ids you got from the request responses from Order and Product in the phaser_order_id and production_planning_product_id fields, respectively.
7.- Jobs
- Add jobs using the phaser-jobs endpoint
- User the ids you got from the request responses from Order item, workstage, and Workstation in the phaser_order_row_id, phaser_workstage_id, and workstations (put your Workstation ids here in a comma separated string) fields.
And there you have it! You have created a basic Order with jobs to export to the Production Scheduling module.