v1
latestOpenAPI 3.1.02026-07-2498134321.1 KBCreate a Workflow Asynchronously
Launch a new Workflow asynchronously for non-blocking performance, which is helpful when/if you provide files to the Workflow.
OAuth Scope required: public.workflows.createWorkflows
Query parameters
If values are not specified for a given field, use the default values specified in the launch form configuration.
Headers
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.
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.
Request body
Example request
{
"template": "600b296c3e15a234ab88f884",
"attributes": {
"counterpartyName": "Example Company",
"draft": [
{
"url": "https://www.law.berkeley.edu/wp-content/uploads/2018/12/Resume-Samples-1.pdf"
}
],
"localLinkedRecord": "IC-123",
"localParentRecord": "IC-456",
"localChildRecord": "IC-789"
},
"creator": {
"email": "example@example.com"
}
}Response
The response of the initiated async workflow launch.
Example response
{
"asyncJobId": "jobIda89474a8ba364f79bb510517d7bd3fea",
"asyncJobStatusUrl": "https://na1.ironcladapp.com/public/api/v1/workflows/async/jobIda89474a8ba364f79bb510517d7bd3fea"
}