getWorkflowItemCreationStatus

Click to copy

Checks on the creation status of a Workflow Manager item

Check the creation status of a workflow item. The creation status reflects the state of the item being created. The creation status can be returned for the workflow item owner or users with access to the workflow item.

Query parameters

NameTypeRequired

token

string

Path parameters

NameTypeRequired

itemId

string

orgId

string

Examples

Request

Use dark colors for code blocksCopy
1
2
3
4
# You can also use wget
curl -X GET /{orgId}/admin/{itemId}/creationStatus \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

Response

200 Response

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
{
  "success": true,
  "itemId": "string",
  "status": "Executing",
  "error": {
    "message": "string",
    "name": "UnableToDetermineHostingServer",
    "details": [
      "string"
    ]
  }
}
StatusMeaningDescriptionSchema

200

OK

The item creation status of an item being created.

CreateItemResponse

400

Bad Request

error

WorkflowJsonExceptionDTO

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.