This endpoint returns a list of past and current workflow executions summaries (i.e., workflow history) for authenticated user.
HTTP Request
- URL Composition
Base URL: https://api.cloud.precisely.com
Bulk Analysis : /v1/li/workflows/history
- Supported Methods: GET only
Request format
https://api.cloud.precisely.com/v1/li/workflows/historyRequest parameters
None
Example
Request:
https://api.cloud.precisely.com/v1/li/workflows/historyResponse:
{
"workflows": [
{
"workflowId": "3e5a0973-d673-4cd3-ac2d-31840deeddbb",
"status": "COMPLETED",
"startTime": "2025-07-22T14:01:52.140582386Z",
"closeTime": "2025-07-22T14:03:39.796607481Z"
},
{
"workflowId": "83f91950-15ca-4ed3-9da9-f43a30e91b26",
"status": "FAILED",
"startTime": "2025-07-22T11:33:49.061987993Z",
"closeTime": "2025-07-22T11:37:29.514942666Z"
}
]
}