Integration tutorial

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
    1. Add the workstations using the workstations endpoint.
  2. Workstages
    1. Add the workstages using the workstages endpoint
  3. Products / Materials
    1. Add products and materials using the products endpoint
  4. Customers
    1. Add customers using the customers endpoint
  5. Orders
    1. Add orders using the phaser-orders endpoint
    2. Use the id you got from creating the customer in the production_planning_customer_id field
  6. Order items
    1. Add order items using the phaser-order-rows endpoint
    2. 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
    1. Add jobs using the phaser-jobs endpoint
    2. 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.