Extra information
System documentation: Onshape API ReferenceSetting up HTTP Client Onshape
Steps- In Alumio Dashboard, go to Connections → HTTPS (API). Create a new HTTP Client and select Onshape HTTP Client as the prototype of the HTTP Client.
- Fill in the Base URI, Api Key, and Secret Key.
Subscribing to Entities from Onshape
Steps- Go to Integrations → Incoming and create a new Incoming configuration and select Onshape Subscriber as the subscriber.
- Select the entity you want to subscribe to from Onshape.
- Add any request parameters needed to subscribe to the entity (optional).
- You can optionally add a transformer to transform the request parameters into something you need.
- Select the Onshape HTTP Client to use.

- Path is the path parameter of the URL. For example, the {cid}.
- Query is a defined set of parameters attached to the end of a URL.
Example: www.url.com?type=true&start=0

/companies/123456
Input Transformer
Any transformer set here will be executed after the Request Parameters are loaded. So, you basically can add any transformer to provide and transform the request parameters into anything you need, either as path parameters and/or as query parameters of an entity.
HTTP Client
It’s the HTTP Client configuration or prototype you will use to access Onshape.
Publishing Entity to Onshape
Steps- Go to Integrations → Outgoing, create a new Outgoing configuration, and select Onshape Publisher as the publisher.
- Select the method that you want the publisher to use with the data.
- Select the Onshape entity you want the data to be published to.
- Select the HTTP Client to use.



- Path is the path parameter of the URL. For example, the {id}.
- Query is a defined set of parameters attached to the end of a URL.
Example: www.url.com?type=true&start=0 - Payload is the data contained within a request.
/publications
HTTP Client
It’s the HTTP Client configuration or prototype you will use to access Onshape.