Hello,
I’m facing difficulties to find a way to get information from a jobs started via API.
Ie, after a startJob, i receive a response like
{
"@odata.context": "https://xxx.xx.xxx.xx/odata/$metadata#Jobs",
"value": [
{
"Key": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"StartTime": null,
"EndTime": null,
"State": "Pending",
"Source": "Manual",
"SourceType": "Manual",
"BatchExecutionKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"Info": null,
"CreationTime": "2020-07-28T11:45:21.8598644Z",
"StartingScheduleId": null,
"ReleaseName": "test_TEST",
"Type": "Unattended",
"InputArguments": null,
"OutputArguments": null,
"HostMachineName": null,
"HasMediaRecorded": false,
"PersistenceId": null,
"ResumeVersion": null,
"StopStrategy": null,
"ReleaseVersionId": null,
"Id": 58
}
I know would like to be able to check the STATE of this job though API, but i can’t find any solution anywere… Look like we can only use {{url}}/odata/Jobs?$filter=StartTime ge to filter job list.
If anyone can help a nooby on uipath api calls, many thanks by advance