I'd like to get more information about a workflow instance but all I know is the workflow instance ID. Is there a way I can use its instance ID to get more information?
You can retrieve details using the following API endpoints. Replace :instanceId with the workflow instance ID:
BASE URL:
Endpoints
Get Documents: Retrieve documents specific to the workflow instance
GET /api/v2/instances/:instanceId/documents
Get Tasks: Tasks and milestones associated with the instance
GET /api/v2/instances/:instanceId/tasks
Get Properties: Unique properties for the instance, such as fields
GET /api/v2/instances/:instanceId/properties
Tip: To quickly test these endpoints, use our Postman collection