v1

latestOpenAPI 3.1.02026-07-2498134321.1 KB
Workflows

Retrieve the Turn History on a Workflow

An array of objects for each turn on a workflow.

OAuth Scope required: public.workflows.readTurnHistory

get/workflows/{id}/turn-history

Path parameters

idstring required

The unique identifier or Ironclad ID of a workflow.

Query parameters

pageinteger

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

pageSizeinteger

A limit of the number of results to return.

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": 42,
  "list": [
    {
      "turnParty": "internal",
      "turnStartTime": "2022-09-20T15:51:54.156Z",
      "turnLocation": "manual change",
      "turnUserId": "5f89b6a5eed2cc6e0b2735d4",
      "turnEndTime": "2022-09-28T19:21:05.034Z",
      "turnNumber": 1,
      "turnUserEmail": "baldwin@ironcladhq.com"
    }
  ]
}