Extra information
System documentation: Ironclad API ReferenceConnector package documentation
Table of Contents
- 1. Setting up HTTP Client Ironclad
- 1.1 Steps
- 2. Subscribing to entities from Ironclad
- 2.1 Steps
- 2.2 General concept
- 3. Publishing entity to Ironclad
- 3.1 Steps
- 3.2 General concept
1. Setting up HTTP Client Ironclad
1.1 Steps- In the Alumio Dashboard, go to Clients -> HTTP Clients. Create a new HTTP Client.
- Select Ironclad HTTP Client as PlatForm and click next step
- Select a server where you want to use Ironclad.
- Select authentication type you want for the OAuth 2.
- Fill in the Client ID, Client Secret and Scope. (See the Ironclad Authentication Documentation)
- Click on “Grant access to Ironclad” and you will be redirected to approve the grant for Authorization Code Grant. The key will be generated after this process complete.
- Click next step, fill the name of the HTTP Client and finally you can save the HTTP Client for use.

- You will need to add special header of
x-as-user-idorx-as-user-emailin the Subscriber or Publisher if you choose the Client Credentials Grant. You can do this by adding plugins in Advanced tab in the Subscriber or Publisher.

- The scope of the OAuth need to be defined first when creating Apps inside Ironclad.

2. Subscribing to Entities from Ironclad
2.1 Steps- Go to Connections -> Incoming and create a new incoming configuration and select “Ironclad Subscriber” as the subscriber.
- Select the entity you want to subscribe to from Ironclad.
- Add any request parameters needed to subscribe to the entity.
- Select the Ironclad HTTP Client to use.
- You can optionally add a transformer to transform the request parameters into something you will request from Ironclad.
- You can also optionally enable pagination to allow Alumio to fetch paginated entities.


public.workflows.readComments to use this end point.
Alumio will then make a request to Ironclad with the URL /public/api/v1/workflows/67b5efa6ca7ddad515c1e57b/comments
- 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
- Go to Connections -> Outgoing, create a new outgoing configuration and select “Ironclad Publisher” as the publisher.
- Select the Method you want the publisher to use with the data.
- Select the Ironclad entity you want the data to be published to.
- You can optionally add any query data to the request on the key query.
- You can optionally add any payload data to the request on the key payload.
- Select the HTTP Client to use.



public.workflows.createComments to use this end point.
Alumio will send an API request to Ironclad with URL /public/api/v1/workflows/67b5efa6ca7ddad515c1e57b/comments
- 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.