v1

latestOpenAPI 3.1.02026-07-2498134321.1 KB
Workflows

List All Workflows

List all workflows in your Ironclad account.

OAuth Scope required: public.workflows.readWorkflows

get/workflows

Query parameters

pageinteger

The page number used when paginating through a list of results.

pageSizeinteger

A limit of the number of results to return.

hydrateEntitiesboolean

Indicates whether to fully hydrate related entities (true) or return minimal information (false).

statusstring[]

Filter the workflows that are listed based on their status. If this parameter is omitted, active workflows will be returned. Active workflows include workflows in the Create, Review, Sign, and Archive stages. Also accepts multiple comma-separated statuses to get workflows in more than one status.

templatestring

Filter workflows to a specific Template ID.

lastUpdatedstring

Retrieve workflows that have been updated since a UTC date.

filterstring

Filter workflows using a formula. The workflow attribute ID should be enclosed in brackets [ ] and the value should be enclosed in single quotes ' '.

Workflow attributes for a specific workflow design can be identified using the List All Workflow Schemas endpoint.

Supported formula operations include the following with documentation found here:

<ul> <li>Equals / NotEqual</li> <li>Contains</li> <li>IsEmpty / IsNotEmpty</li> <li>LessThan / LessThanOrEqual</li> <li>GreaterThan / GreaterThanOrEqual</li> <li>Date / Today / RelativeDate</li> <li>And / Or</li> </ul>
searchstring

Free-text search across all workflow properties, matching the in-app search. Combined with filter and any other parameters using logical AND. Maximum 1000 characters.

Headers

x-as-user-emailstring
Example:jane.doe@test.com

Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-id is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.

x-as-user-idstring
Example:5f0375c4cdc1927a3c5edcd3

Denotes the actor of the request. When used, the API will take into account this user's permissions and access. This or x-as-user-email is required when the associated token was produced from the Client Credentials grant or with legacy bearer tokens on select endpoints. More information about permissions.

Response

200

pageinteger
pageSizeinteger
countinteger

Example response

{
  "pageSize": 20,
  "count": 1234,
  "list": [
    {
      "id": "6013609108b8f070cee94fc1",
      "ironcladId": "IC-1",
      "title": "Consulting Agreement with Jane Doe",
      "template": "600b296c3e15a234ab88f884",
      "step": "Review",
      "schema": {
        "counterpartyName": {
          "type": "string",
          "displayName": "Example String Attribute",
          "propertyKey": "counterpartyName",
          "readOnly": true
        },
        "amount": {
          "type": "number",
          "displayName": "Example Number Attribute",
          "propertyKey": "amount"
        },
        "fee": {
          "type": "monetaryAmount",
          "displayName": "Example Monetary Amount Attribute",
          "propertyKey": "fee"
        },
        "draft": {
          "type": "array",
          "elementType": {
            "type": "document",
            "displayName": "Example Document Attribute"
          }
        },
        "lineItems": {
          "type": "array",
          "elementType": {
            "type": "object",
            "displayName": "Example Object Attribute",
            "schema": {
              "childAttribute": {
                "type": "string",
                "displayName": "Example Value"
              },
              "anotherChildAttribute": {
                "displayName": "Example Value"
              },
              "numberAttribute": {
                "number": 5
              }
            }
          }
        }
      },
      "attributes": {
        "counterpartyName": "Boba Fett",
        "amount": 123,
        "fee": {
          "currency": "USD",
          "amount": 50000
        },
        "draft": [
          {
            "version": "B1QePArXb",
            "versionNumber": 2,
            "filename": "file.pdf",
            "key": "rJklwCHQ",
            "download": "/public/api/v1/workflows/594356b9fbcd7f74006fdf8a/document/rJklwCHQ/download",
            "lastModified": {
              "timestamp": "2016-11-17T00:37:22.318Z",
              "author": {
                "type": "internalUser",
                "companyName": "Jabba the Hutt Industries",
                "displayName": "Boba Fett",
                "email": "boba@example.com",
                "userId": "63d415e0dd0d828c3a878548"
              }
            }
          }
        ],
        "localLinkedRecord": {
          "recordId": "50cc0690-d3b5-4a0e-a9c0-4e323e409429",
          "readableId": "IC-123"
        },
        "localParentRecord": {
          "recordId": "50cc0690-d3b5-4a0e-a9c0-4e323e409430",
          "readableId": "IC-456"
        },
        "localChildRecord": {
          "recordId": "50cc0690-d3b5-4a0e-a9c0-4e323e409431",
          "readableId": "IC-789"
        }
      },
      "status": "active",
      "creator": {
        "id": "63d415e0dd0d828c3a878548",
        "displayName": "Boba Fett",
        "email": "fett@intergalactic.com",
        "title": "Director",
        "username": "fett@intergalactic.com",
        "metadata": {}
      },
      "created": "2016-11-17T00:37:22.318Z",
      "lastUpdated": "2016-11-17T00:37:22.318Z",
      "roles": [
        {
          "id": "legal",
          "displayName": "Legal",
          "assignees": [
            {
              "userName": "Boba Fett",
              "userId": "63d415e0dd0d828c3a878548",
              "email": "bobafett@example.com"
            }
          ]
        }
      ],
      "approvals": {
        "state": "not_started"
      },
      "signatures": {
        "state": "not_started"
      },
      "recordIds": [
        "715f1e37-292f-4e6c-8b48-c07e1b68bccd"
      ]
    }
  ]
}