Knowledge base
Tips and tricks Best practice guides, FAQ & more
Find tutorials, guides and use case examples in the
Learning centerGet Last RunId by FlowId returns the RunItemId of a flow execution using the FlowId. RunItemId is a unique Id for the individual run instance of a flow.
http://{controllerMachine}:{controllerPort}/api/v4/flows/{infoId}/runItems/last
Field | Type | Description | Comment |
---|---|---|---|
FlowId | string | Unique identifier for Flow | FlowId can be fetched by right clicking the flow in editor and choosing Get Id option or from Get Run Item by Id |
curl -X GET --header 'Accept: application/json' --header 'AccessKey: Mo87Nc4qDAtzJNDb' 'http://{controllerMachine}:{controllerPort}/api/v4/flows/99b7c050-02bd-4a37-b1d5-8f69ed42ab96/runItems/last'
$headers = @{}
$headers.Add("AccessKey","Mo87Nc4qDAtzJNDb")
Invoke-WebRequest -Uri "'http://{controllerMachine}:{controllerPort}/api/v4/flows/99b7c050-02bd-4a37-b1d5-8f69ed42ab96/runItems/last" -ContentType "application/json" -Headers $headers -Method GET
Returns a list of runIds
{ "$id": "1", "RunItemId ": "f082a297-3ec0-4310-b46e-38bf422efe43" } |
Field | Type | Description | Comment |
---|---|---|---|
$id | string | ID of internal object | |
RunItemId | string | RunItemId is a unique Id for the individual run instance of a flow in a run |
List of response codes:
200 (OK)
404 (Not Found)
401 (Unauthorized)
400 (Bad Request)
405 (Method Not Allowed)
500 (Internal Server Error)
©2024, Leapwork. All rights reserved.