PowerBuilder / Orchestrator / Gets Jobs. Copy
Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Key
string ls_StartTime
string ls_EndTime
string ls_State
string ls_JobPriority
string ls_HostingType
string ls_Name
string ls_V_Type
string ls_Username
string ls_LicenseKey
string ls_MachineName
integer li_MachineId
string ls_ExternalName
string ls_Description
string ls_ProvisionType
string ls_Password
integer li_CredentialStoreId
integer li_UserId
integer li_Enabled
string ls_CredentialType
string ls_RobotEnvironments
integer li_IsExternalLicensed
integer li_LimitConcurrentExecution
integer li_Id
string ls_ReleaseName
string ls_ProcessKey
string ls_ProcessVersion
string ls_ReleaseKey
integer li_IsLatestVersion
integer li_IsProcessDeleted
string ls_ReleaseDescription
integer li_EnvironmentId
string ls_EnvironmentName
string ls_EnvironmentDescription
string ls_EnvironmentType
integer li_EntryPointId
string ls_UniqueId
string ls_Path
string ls_InputArguments
string ls_OutputArguments
string ls_Value
string ls_ContentTypeValue
string ls_IdValue
string ls_ReleaseInputArguments
string ls_ProcessType
integer li_SupportsMultipleEntryPoints
integer li_RequiresUserInteraction
integer li_ReleaseId
string ls_VersionNumber
string ls_CreationTime
string ls_CurrentVersionReleaseName
integer li_CurrentVersionId
string ls_Input
string ls_Output
integer li_ErrorRecordingEnabled
integer li_Duration
integer li_Frequency
integer li_Quality
integer li_AutoStartProcess
integer li_AlwaysRunning
integer li_AutoUpdate
string ls_FeedId
string ls_ReleaseJobPriority
string ls_ReleaseCreationTime
integer li_OrganizationUnitId
string ls_OrganizationUnitFullyQualifiedName
string ls_Source
string ls_SourceType
string ls_BatchExecutionKey
string ls_Info
integer li_StartingScheduleId
string ls_HostMachineName
integer li_HasMediaRecorded
string ls_PersistenceId
integer li_ResumeVersion
string ls_StopStrategy
string ls_RuntimeType
integer li_ReleaseVersionId
string ls_EntryPointPath
string ls_Reference
integer j
integer li_Count_j
string ls_Value
integer k
integer li_Count_k
integer i
integer li_Count_i
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_QueryParams = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat.JsonObject")
loo_QueryParams.UpdateString("mandatoryPermissions","enim officia ut oc")
loo_QueryParams.UpdateString("mandatoryPermissions","quis ex ullamco sit")
loo_QueryParams.UpdateString("atLeastOnePermissions","enim officia ut oc")
loo_QueryParams.UpdateString("atLeastOnePermissions","quis ex ullamco sit")
loo_QueryParams.UpdateString("$expand","esse sit qui")
loo_QueryParams.UpdateString("$filter","esse sit qui")
loo_QueryParams.UpdateString("$select","esse sit qui")
loo_QueryParams.UpdateString("$orderby","esse sit qui")
loo_QueryParams.UpdateInt("$top",12575632)
loo_QueryParams.UpdateInt("$skip",12575632)
loo_QueryParams.UpdateString("$count","true")
// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Http.SetRequestHeader("X-UIPATH-OrganizationUnitId","12575632")
loo_Resp = loo_Http.QuickRequestParams("GET","https://domain.com/odata/Jobs",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_QueryParams
return
end if
loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Resp.GetBodySb(loo_SbResponseBody)
loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")
loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0
Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()
li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
Write-Debug "Response Header:"
Write-Debug loo_Resp.Header
Write-Debug "Failed."
destroy loo_Resp
destroy loo_Http
destroy loo_QueryParams
destroy loo_SbResponseBody
destroy loo_JResp
return
end if
destroy loo_Resp
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "value": [
// {
// "Key": "urn:uuid:be08766e-ac51-bb45-5501-0a3dc5154af2",
// "StartTime": "1968-12-05T22:17:50.256Z",
// "EndTime": "1987-05-29T17:04:27.173Z",
// "State": "Running",
// "JobPriority": "Normal",
// "Robot": {
// "HostingType": "Standard",
// "Name": "ve",
// "Type": "RpaDeveloper",
// "Username": "exercitation et ea",
// "LicenseKey": "elit in",
// "MachineName": "irure Ut mollit dolore",
// "MachineId": -25291783,
// "ExternalName": "laboris commodo dolor do",
// "Description": "culpa eu consequat",
// "ProvisionType": "Automatic",
// "Password": "officia eu ut cupidatat",
// "CredentialStoreId": 68306960,
// "UserId": 31877342,
// "Enabled": true,
// "CredentialType": "Default",
// "Environments": [
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// },
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// }
// ],
// "RobotEnvironments": "non exercitation ut dolor",
// "ExecutionSettings": {},
// "IsExternalLicensed": false,
// "LimitConcurrentExecution": false,
// "Id": -59332040
// },
// "Release": {
// "Name": "sed in aliquip consequat",
// "ProcessKey": "exercitation",
// "ProcessVersion": "amet",
// "Key": "velit ipsum ut",
// "IsLatestVersion": false,
// "IsProcessDeleted": true,
// "Description": "dolore",
// "EnvironmentId": -41748387,
// "EnvironmentName": "esse culpa",
// "Environment": {
// "Name": "ea dolor",
// "Description": "cillum Duis enim",
// "Robots": [
// {
// "HostingType": "Standard",
// "Name": "magna adip",
// "Type": "Development",
// "Username": "dolore ex",
// "LicenseKey": "nulla veniam dolor proident ipsum",
// "MachineName": "deserunt sed aute reprehenderit",
// "MachineId": 99549561,
// "ExternalName": "ad laboris veniam sint incididunt",
// "Description": "Ut commodo",
// "ProvisionType": "Automatic",
// "Password": "reprehenderit",
// "CredentialStoreId": -86457645,
// "UserId": -62740279,
// "Enabled": false,
// "CredentialType": "Default",
// "Environments": [
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// },
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// }
// ],
// "RobotEnvironments": "fugiat labore sunt non",
// "ExecutionSettings": {},
// "IsExternalLicensed": false,
// "LimitConcurrentExecution": false,
// "Id": -57032659
// },
// {
// "HostingType": "Standard",
// "Name": "ut",
// "Type": "Studio",
// "Username": "ipsum fugiat",
// "LicenseKey": "laboris",
// "MachineName": "nisi consequat nostrud adipisicing",
// "MachineId": -86957591,
// "ExternalName": "consequat nulla culpa",
// "Description": "quis proident",
// "ProvisionType": "Automatic",
// "Password": "dolor laborum dolore exercitation",
// "CredentialStoreId": -50712714,
// "UserId": -77316487,
// "Enabled": true,
// "CredentialType": "NCipher",
// "Environments": [
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// },
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// }
// ],
// "RobotEnvironments": "consectetur proident",
// "ExecutionSettings": {},
// "IsExternalLicensed": false,
// "LimitConcurrentExecution": false,
// "Id": 61973728
// }
// ],
// "Type": "Dev",
// "Id": -81564071
// },
// "EntryPointId": 65883382,
// "EntryPoint": {
// "UniqueId": "33d009ac-efb0-a268-39d6-f418e596355f",
// "Path": "ipsum enim est sunt",
// "InputArguments": "quis incididunt sed aliquip laboris",
// "OutputArguments": "labore in a",
// "DataVariation": {
// "Content": {
// "value": "<Error: Too many levels of nesting to fake this schema>"
// },
// "ContentType": {
// "value": "<Error: Too many levels of nesting to fake this schema>"
// },
// "Id": {
// "value": "<Error: Too many levels of nesting to fake this schema>"
// }
// },
// "Id": -88661283
// },
// "InputArguments": "aliqua laborum id reprehenderit irure",
// "ProcessType": "Process",
// "SupportsMultipleEntryPoints": false,
// "RequiresUserInteraction": true,
// "CurrentVersion": {
// "ReleaseId": 74749251,
// "VersionNumber": "et sed in",
// "CreationTime": "2004-08-18T18:18:03.338Z",
// "ReleaseName": "culpa irure eiusmod cillum",
// "Id": -2823220
// },
// "ReleaseVersions": [
// {
// "ReleaseId": 98978237,
// "VersionNumber": "dolor",
// "CreationTime": "1946-05-25T08:32:13.398Z",
// "ReleaseName": "cillum amet do sit",
// "Id": 20089819
// },
// {
// "ReleaseId": -81798741,
// "VersionNumber": "commodo",
// "CreationTime": "1948-07-19T18:02:36.929Z",
// "ReleaseName": "commodo ut",
// "Id": -50835643
// }
// ],
// "Arguments": {
// "Input": "cupidatat nulla dolore laboris",
// "Output": "irure enim"
// },
// "ProcessSettings": {
// "ErrorRecordingEnabled": false,
// "Duration": 21017457,
// "Frequency": -78467124,
// "Quality": -81865886,
// "AutoStartProcess": false,
// "AlwaysRunning": false
// },
// "AutoUpdate": true,
// "FeedId": "b75e256e-424d-3bf4-0039-f805bddcfa1c",
// "JobPriority": "Normal",
// "CreationTime": "1968-10-01T15:48:41.828Z",
// "OrganizationUnitId": 83258498,
// "OrganizationUnitFullyQualifiedName": "deserunt Excepteur velit fugiat ipsum",
// "Id": 97579630
// },
// "Source": "in sed eiusmod officia",
// "SourceType": "Manual",
// "BatchExecutionKey": "0af7775b-abfd-b5da-a616-c1368d064956",
// "Info": "elit qui cupidatat Excepteur irure",
// "CreationTime": "2011-03-20T05:47:21.122Z",
// "StartingScheduleId": -96622782,
// "ReleaseName": "aliqua cillum do",
// "Type": "Attended",
// "InputArguments": "mollit et anim Duis la",
// "OutputArguments": "nisi eu",
// "HostMachineName": "ex nisi est",
// "HasMediaRecorded": true,
// "PersistenceId": "7d168d12-cdee-3fc1-6573-e51cf722927c",
// "ResumeVersion": 80821028,
// "StopStrategy": "Kill",
// "RuntimeType": "Studio",
// "RequiresUserInteraction": true,
// "ReleaseVersionId": -14684718,
// "EntryPointPath": "irure ex",
// "OrganizationUnitId": -47866254,
// "OrganizationUnitFullyQualifiedName": "in dolor adipisicing irure fugiat",
// "Reference": "veniam quis",
// "ProcessType": "TestAutomationProcess",
// "Id": 74454915
// },
// {
// "Key": "urn:uuid:ebc451f5-37de-ca57-6a04-841f283e3db3",
// "StartTime": "2015-06-26T01:29:47.772Z",
// "EndTime": "1975-12-07T06:11:09.831Z",
// "State": "Terminating",
// "JobPriority": "Normal",
// "Robot": {
// "HostingType": "Floating",
// "Name": "reprehenderit mag",
// "Type": "NonProduction",
// "Username": "amet",
// "LicenseKey": "in",
// "MachineName": "veniam sint Duis in",
// "MachineId": -69775421,
// "ExternalName": "sit esse in in",
// "Description": "mollit laboris et adipisicing",
// "ProvisionType": "Manual",
// "Password": "mollit exercitation",
// "CredentialStoreId": -60643044,
// "UserId": 69734890,
// "Enabled": false,
// "CredentialType": "NCipher",
// "Environments": [
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// },
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// }
// ],
// "RobotEnvironments": "fugiat velit",
// "ExecutionSettings": {},
// "IsExternalLicensed": true,
// "LimitConcurrentExecution": true,
// "Id": -10649011
// },
// "Release": {
// "Name": "exer",
// "ProcessKey": "esse irure sunt",
// "ProcessVersion": "commodo esse",
// "Key": "et",
// "IsLatestVersion": false,
// "IsProcessDeleted": false,
// "Description": "cillum elit sint proident laboris",
// "EnvironmentId": -28668699,
// "EnvironmentName": "fugiat dolor",
// "Environment": {
// "Name": "aliquip in ",
// "Description": "ullamco Ut ipsum",
// "Robots": [
// {
// "HostingType": "Standard",
// "Name": "veniam irure",
// "Type": "Unattended",
// "Username": "exercitation eu",
// "LicenseKey": "eu",
// "MachineName": "laborum non ut",
// "MachineId": -97603824,
// "ExternalName": "do",
// "Description": "commodo",
// "ProvisionType": "Manual",
// "Password": "amet",
// "CredentialStoreId": -46683638,
// "UserId": -79507069,
// "Enabled": false,
// "CredentialType": "SafeNet",
// "Environments": [
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// },
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// }
// ],
// "RobotEnvironments": "ut nisi cupidatat",
// "ExecutionSettings": {},
// "IsExternalLicensed": true,
// "LimitConcurrentExecution": false,
// "Id": 54910452
// },
// {
// "HostingType": "Standard",
// "Name": "ipsum labor",
// "Type": "TestAutomation",
// "Username": "sed enim anim",
// "LicenseKey": "laboris ut officia id",
// "MachineName": "quis in",
// "MachineId": -90219792,
// "ExternalName": "in pariatur laborum sit",
// "Description": "minim fugiat nisi dolore consectetur",
// "ProvisionType": "Manual",
// "Password": "officia cupidatat",
// "CredentialStoreId": 43407097,
// "UserId": -57075544,
// "Enabled": false,
// "CredentialType": "SafeNet",
// "Environments": [
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// },
// {
// "value": "<Circular reference to #/components/schemas/EnvironmentDto detected>"
// }
// ],
// "RobotEnvironments": "Duis proident irure",
// "ExecutionSettings": {},
// "IsExternalLicensed": true,
// "LimitConcurrentExecution": true,
// "Id": -9267781
// }
// ],
// "Type": "Prod",
// "Id": -62000928
// },
// "EntryPointId": -90692421,
// "EntryPoint": {
// "UniqueId": "urn:uuid:d301be4a-2392-bf86-7e46-bb8be011fbf7",
// "Path": "velit minim a",
// "InputArguments": "aliquip eu reprehenderit sit",
// "OutputArguments": "in Lorem sint",
// "DataVariation": {
// "Content": {
// "value": "<Error: Too many levels of nesting to fake this schema>"
// },
// "ContentType": {
// "value": "<Error: Too many levels of nesting to fake this schema>"
// },
// "Id": {
// "value": "<Error: Too many levels of nesting to fake this schema>"
// }
// },
// "Id": -7344118
// },
// "InputArguments": "commodo aute",
// "ProcessType": "TestAutomationProcess",
// "SupportsMultipleEntryPoints": true,
// "RequiresUserInteraction": true,
// "CurrentVersion": {
// "ReleaseId": 81406107,
// "VersionNumber": "id dolor fugiat est",
// "CreationTime": "1985-09-08T00:08:37.146Z",
// "ReleaseName": "amet nisi in et",
// "Id": 18866201
// },
// "ReleaseVersions": [
// {
// "ReleaseId": -18017135,
// "VersionNumber": "laboris",
// "CreationTime": "2010-11-11T00:55:45.791Z",
// "ReleaseName": "s",
// "Id": -24543215
// },
// {
// "ReleaseId": 55664279,
// "VersionNumber": "sint",
// "CreationTime": "2017-11-30T09:41:33.627Z",
// "ReleaseName": "laboris dolore",
// "Id": 98955952
// }
// ],
// "Arguments": {
// "Input": "laboris Ut eiusmod ad occaecat",
// "Output": "dolor ut aliquip Lorem"
// },
// "ProcessSettings": {
// "ErrorRecordingEnabled": true,
// "Duration": -46266930,
// "Frequency": 79484330,
// "Quality": 57996402,
// "AutoStartProcess": false,
// "AlwaysRunning": false
// },
// "AutoUpdate": true,
// "FeedId": "ba07e4b6-b53b-9353-118a-b30abad1721a",
// "JobPriority": "Low",
// "CreationTime": "2018-12-13T23:39:20.742Z",
// "OrganizationUnitId": -70783962,
// "OrganizationUnitFullyQualifiedName": "ullamco dolor",
// "Id": -27097135
// },
// "Source": "elit exercitation",
// "SourceType": "Schedule",
// "BatchExecutionKey": "8ab4e543-f97f-69ee-ff36-3957c3150367",
// "Info": "deserunt ullamco non ",
// "CreationTime": "2017-03-10T11:50:24.671Z",
// "StartingScheduleId": 95117699,
// "ReleaseName": "sunt commodo ex in ut",
// "Type": "Attended",
// "InputArguments": "cupid",
// "OutputArguments": "enim ad",
// "HostMachineName": "elit Lorem",
// "HasMediaRecorded": false,
// "PersistenceId": "urn:uuid:cdafed65-066d-922a-b8e4-414a65fc1ee1",
// "ResumeVersion": 96117442,
// "StopStrategy": "SoftStop",
// "RuntimeType": "CitizenDeveloper",
// "RequiresUserInteraction": true,
// "ReleaseVersionId": 49481835,
// "EntryPointPath": "culpa enim",
// "OrganizationUnitId": 73582213,
// "OrganizationUnitFullyQualifiedName": "in Lorem ex",
// "Reference": "sunt cupidatat id",
// "ProcessType": "TestAutomationProcess",
// "Id": 15658384
// }
// ]
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
i = 0
li_Count_i = loo_JResp.SizeOfArray("value")
do while i < li_Count_i
loo_JResp.I = i
ls_Key = loo_JResp.StringOf("value[i].Key")
ls_StartTime = loo_JResp.StringOf("value[i].StartTime")
ls_EndTime = loo_JResp.StringOf("value[i].EndTime")
ls_State = loo_JResp.StringOf("value[i].State")
ls_JobPriority = loo_JResp.StringOf("value[i].JobPriority")
ls_HostingType = loo_JResp.StringOf("value[i].Robot.HostingType")
ls_Name = loo_JResp.StringOf("value[i].Robot.Name")
ls_V_Type = loo_JResp.StringOf("value[i].Robot.Type")
ls_Username = loo_JResp.StringOf("value[i].Robot.Username")
ls_LicenseKey = loo_JResp.StringOf("value[i].Robot.LicenseKey")
ls_MachineName = loo_JResp.StringOf("value[i].Robot.MachineName")
li_MachineId = loo_JResp.IntOf("value[i].Robot.MachineId")
ls_ExternalName = loo_JResp.StringOf("value[i].Robot.ExternalName")
ls_Description = loo_JResp.StringOf("value[i].Robot.Description")
ls_ProvisionType = loo_JResp.StringOf("value[i].Robot.ProvisionType")
ls_Password = loo_JResp.StringOf("value[i].Robot.Password")
li_CredentialStoreId = loo_JResp.IntOf("value[i].Robot.CredentialStoreId")
li_UserId = loo_JResp.IntOf("value[i].Robot.UserId")
li_Enabled = loo_JResp.BoolOf("value[i].Robot.Enabled")
ls_CredentialType = loo_JResp.StringOf("value[i].Robot.CredentialType")
ls_RobotEnvironments = loo_JResp.StringOf("value[i].Robot.RobotEnvironments")
li_IsExternalLicensed = loo_JResp.BoolOf("value[i].Robot.IsExternalLicensed")
li_LimitConcurrentExecution = loo_JResp.BoolOf("value[i].Robot.LimitConcurrentExecution")
li_Id = loo_JResp.IntOf("value[i].Robot.Id")
ls_ReleaseName = loo_JResp.StringOf("value[i].Release.Name")
ls_ProcessKey = loo_JResp.StringOf("value[i].Release.ProcessKey")
ls_ProcessVersion = loo_JResp.StringOf("value[i].Release.ProcessVersion")
ls_ReleaseKey = loo_JResp.StringOf("value[i].Release.Key")
li_IsLatestVersion = loo_JResp.BoolOf("value[i].Release.IsLatestVersion")
li_IsProcessDeleted = loo_JResp.BoolOf("value[i].Release.IsProcessDeleted")
ls_ReleaseDescription = loo_JResp.StringOf("value[i].Release.Description")
li_EnvironmentId = loo_JResp.IntOf("value[i].Release.EnvironmentId")
ls_EnvironmentName = loo_JResp.StringOf("value[i].Release.EnvironmentName")
ls_EnvironmentName = loo_JResp.StringOf("value[i].Release.Environment.Name")
ls_EnvironmentDescription = loo_JResp.StringOf("value[i].Release.Environment.Description")
ls_EnvironmentType = loo_JResp.StringOf("value[i].Release.Environment.Type")
li_EnvironmentId = loo_JResp.IntOf("value[i].Release.Environment.Id")
li_EntryPointId = loo_JResp.IntOf("value[i].Release.EntryPointId")
ls_UniqueId = loo_JResp.StringOf("value[i].Release.EntryPoint.UniqueId")
ls_Path = loo_JResp.StringOf("value[i].Release.EntryPoint.Path")
ls_InputArguments = loo_JResp.StringOf("value[i].Release.EntryPoint.InputArguments")
ls_OutputArguments = loo_JResp.StringOf("value[i].Release.EntryPoint.OutputArguments")
ls_Value = loo_JResp.StringOf("value[i].Release.EntryPoint.DataVariation.Content.value")
ls_ContentTypeValue = loo_JResp.StringOf("value[i].Release.EntryPoint.DataVariation.ContentType.value")
ls_IdValue = loo_JResp.StringOf("value[i].Release.EntryPoint.DataVariation.Id.value")
li_EntryPointId = loo_JResp.IntOf("value[i].Release.EntryPoint.Id")
ls_ReleaseInputArguments = loo_JResp.StringOf("value[i].Release.InputArguments")
ls_ProcessType = loo_JResp.StringOf("value[i].Release.ProcessType")
li_SupportsMultipleEntryPoints = loo_JResp.BoolOf("value[i].Release.SupportsMultipleEntryPoints")
li_RequiresUserInteraction = loo_JResp.BoolOf("value[i].Release.RequiresUserInteraction")
li_ReleaseId = loo_JResp.IntOf("value[i].Release.CurrentVersion.ReleaseId")
ls_VersionNumber = loo_JResp.StringOf("value[i].Release.CurrentVersion.VersionNumber")
ls_CreationTime = loo_JResp.StringOf("value[i].Release.CurrentVersion.CreationTime")
ls_CurrentVersionReleaseName = loo_JResp.StringOf("value[i].Release.CurrentVersion.ReleaseName")
li_CurrentVersionId = loo_JResp.IntOf("value[i].Release.CurrentVersion.Id")
ls_Input = loo_JResp.StringOf("value[i].Release.Arguments.Input")
ls_Output = loo_JResp.StringOf("value[i].Release.Arguments.Output")
li_ErrorRecordingEnabled = loo_JResp.BoolOf("value[i].Release.ProcessSettings.ErrorRecordingEnabled")
li_Duration = loo_JResp.IntOf("value[i].Release.ProcessSettings.Duration")
li_Frequency = loo_JResp.IntOf("value[i].Release.ProcessSettings.Frequency")
li_Quality = loo_JResp.IntOf("value[i].Release.ProcessSettings.Quality")
li_AutoStartProcess = loo_JResp.BoolOf("value[i].Release.ProcessSettings.AutoStartProcess")
li_AlwaysRunning = loo_JResp.BoolOf("value[i].Release.ProcessSettings.AlwaysRunning")
li_AutoUpdate = loo_JResp.BoolOf("value[i].Release.AutoUpdate")
ls_FeedId = loo_JResp.StringOf("value[i].Release.FeedId")
ls_ReleaseJobPriority = loo_JResp.StringOf("value[i].Release.JobPriority")
ls_ReleaseCreationTime = loo_JResp.StringOf("value[i].Release.CreationTime")
li_OrganizationUnitId = loo_JResp.IntOf("value[i].Release.OrganizationUnitId")
ls_OrganizationUnitFullyQualifiedName = loo_JResp.StringOf("value[i].Release.OrganizationUnitFullyQualifiedName")
li_ReleaseId = loo_JResp.IntOf("value[i].Release.Id")
ls_Source = loo_JResp.StringOf("value[i].Source")
ls_SourceType = loo_JResp.StringOf("value[i].SourceType")
ls_BatchExecutionKey = loo_JResp.StringOf("value[i].BatchExecutionKey")
ls_Info = loo_JResp.StringOf("value[i].Info")
ls_CreationTime = loo_JResp.StringOf("value[i].CreationTime")
li_StartingScheduleId = loo_JResp.IntOf("value[i].StartingScheduleId")
ls_ReleaseName = loo_JResp.StringOf("value[i].ReleaseName")
ls_V_Type = loo_JResp.StringOf("value[i].Type")
ls_InputArguments = loo_JResp.StringOf("value[i].InputArguments")
ls_OutputArguments = loo_JResp.StringOf("value[i].OutputArguments")
ls_HostMachineName = loo_JResp.StringOf("value[i].HostMachineName")
li_HasMediaRecorded = loo_JResp.BoolOf("value[i].HasMediaRecorded")
ls_PersistenceId = loo_JResp.StringOf("value[i].PersistenceId")
li_ResumeVersion = loo_JResp.IntOf("value[i].ResumeVersion")
ls_StopStrategy = loo_JResp.StringOf("value[i].StopStrategy")
ls_RuntimeType = loo_JResp.StringOf("value[i].RuntimeType")
li_RequiresUserInteraction = loo_JResp.BoolOf("value[i].RequiresUserInteraction")
li_ReleaseVersionId = loo_JResp.IntOf("value[i].ReleaseVersionId")
ls_EntryPointPath = loo_JResp.StringOf("value[i].EntryPointPath")
li_OrganizationUnitId = loo_JResp.IntOf("value[i].OrganizationUnitId")
ls_OrganizationUnitFullyQualifiedName = loo_JResp.StringOf("value[i].OrganizationUnitFullyQualifiedName")
ls_Reference = loo_JResp.StringOf("value[i].Reference")
ls_ProcessType = loo_JResp.StringOf("value[i].ProcessType")
li_Id = loo_JResp.IntOf("value[i].Id")
j = 0
li_Count_j = loo_JResp.SizeOfArray("value[i].Robot.Environments")
do while j < li_Count_j
loo_JResp.J = j
ls_Value = loo_JResp.StringOf("value[i].Robot.Environments[j].value")
j = j + 1
loop
j = 0
li_Count_j = loo_JResp.SizeOfArray("value[i].Release.Environment.Robots")
do while j < li_Count_j
loo_JResp.J = j
ls_HostingType = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].HostingType")
ls_Name = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].Name")
ls_V_Type = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].Type")
ls_Username = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].Username")
ls_LicenseKey = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].LicenseKey")
ls_MachineName = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].MachineName")
li_MachineId = loo_JResp.IntOf("value[i].Release.Environment.Robots[j].MachineId")
ls_ExternalName = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].ExternalName")
ls_Description = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].Description")
ls_ProvisionType = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].ProvisionType")
ls_Password = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].Password")
li_CredentialStoreId = loo_JResp.IntOf("value[i].Release.Environment.Robots[j].CredentialStoreId")
li_UserId = loo_JResp.IntOf("value[i].Release.Environment.Robots[j].UserId")
li_Enabled = loo_JResp.BoolOf("value[i].Release.Environment.Robots[j].Enabled")
ls_CredentialType = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].CredentialType")
ls_RobotEnvironments = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].RobotEnvironments")
li_IsExternalLicensed = loo_JResp.BoolOf("value[i].Release.Environment.Robots[j].IsExternalLicensed")
li_LimitConcurrentExecution = loo_JResp.BoolOf("value[i].Release.Environment.Robots[j].LimitConcurrentExecution")
li_Id = loo_JResp.IntOf("value[i].Release.Environment.Robots[j].Id")
k = 0
li_Count_k = loo_JResp.SizeOfArray("value[i].Release.Environment.Robots[j].Environments")
do while k < li_Count_k
loo_JResp.K = k
ls_Value = loo_JResp.StringOf("value[i].Release.Environment.Robots[j].Environments[k].value")
k = k + 1
loop
j = j + 1
loop
j = 0
li_Count_j = loo_JResp.SizeOfArray("value[i].Release.ReleaseVersions")
do while j < li_Count_j
loo_JResp.J = j
li_ReleaseId = loo_JResp.IntOf("value[i].Release.ReleaseVersions[j].ReleaseId")
ls_VersionNumber = loo_JResp.StringOf("value[i].Release.ReleaseVersions[j].VersionNumber")
ls_CreationTime = loo_JResp.StringOf("value[i].Release.ReleaseVersions[j].CreationTime")
ls_ReleaseName = loo_JResp.StringOf("value[i].Release.ReleaseVersions[j].ReleaseName")
li_Id = loo_JResp.IntOf("value[i].Release.ReleaseVersions[j].Id")
j = j + 1
loop
i = i + 1
loop
destroy loo_Http
destroy loo_QueryParams
destroy loo_SbResponseBody
destroy loo_JResp
Curl Command
curl -G -d "mandatoryPermissions=enim%20officia%20ut%20oc"
-d "mandatoryPermissions=quis%20ex%20ullamco%20sit"
-d "atLeastOnePermissions=enim%20officia%20ut%20oc"
-d "atLeastOnePermissions=quis%20ex%20ullamco%20sit"
-d "$expand=esse%20sit%20qui"
-d "$filter=esse%20sit%20qui"
-d "$select=esse%20sit%20qui"
-d "$orderby=esse%20sit%20qui"
-d "$top=12575632"
-d "$skip=12575632"
-d "$count=true"
-H "Authorization: Bearer <access_token>"
-H "X-UIPATH-OrganizationUnitId: 12575632"
https://domain.com/odata/Jobs
Postman Collection Item JSON
{
"name": "Gets Jobs. Copy",
"request": {
"method": "GET",
"header": [
{
"description": "Folder/OrganizationUnit Id",
"key": "X-UIPATH-OrganizationUnitId",
"value": "12575632"
}
],
"url": {
"raw": "{{baseUrl}}/odata/Jobs?mandatoryPermissions=enim officia ut oc&mandatoryPermissions=quis ex ullamco sit&atLeastOnePermissions=enim officia ut oc&atLeastOnePermissions=quis ex ullamco sit&$expand=esse sit qui&$filter=esse sit qui&$select=esse sit qui&$orderby=esse sit qui&$top=12575632&$skip=12575632&$count=true",
"host": [
"{{baseUrl}}"
],
"path": [
"odata",
"Jobs"
],
"query": [
{
"key": "mandatoryPermissions",
"value": "enim officia ut oc",
"description": "If in a cross-folder scenario, these represent the additional permissions\r\n required in the folders the data is retrieved from; all permissions in this set must be met"
},
{
"key": "mandatoryPermissions",
"value": "quis ex ullamco sit",
"description": "If in a cross-folder scenario, these represent the additional permissions\r\n required in the folders the data is retrieved from; all permissions in this set must be met"
},
{
"key": "atLeastOnePermissions",
"value": "enim officia ut oc",
"description": "If in a cross-folder scenario, these represent the additional permissions\r\n required in the folders the data is retrieved from; at least one permission in this set must be met"
},
{
"key": "atLeastOnePermissions",
"value": "quis ex ullamco sit",
"description": "If in a cross-folder scenario, these represent the additional permissions\r\n required in the folders the data is retrieved from; at least one permission in this set must be met"
},
{
"key": "$expand",
"value": "esse sit qui",
"description": "Indicates the related entities to be represented inline. The maximum depth is 2."
},
{
"key": "$filter",
"value": "esse sit qui",
"description": "Restricts the set of items returned. The maximum number of expressions is 100."
},
{
"key": "$select",
"value": "esse sit qui",
"description": "Limits the properties returned in the result."
},
{
"key": "$orderby",
"value": "esse sit qui",
"description": "Specifies the order in which items are returned. The maximum number of expressions is 5."
},
{
"key": "$top",
"value": "12575632",
"description": "Limits the number of items returned from a collection. The maximum value is 1000."
},
{
"key": "$skip",
"value": "12575632",
"description": "Excludes the specified number of items of the queried collection from the result."
},
{
"key": "$count",
"value": "true",
"description": "Indicates whether the total count of items within a collection are returned in the result."
}
]
},
"description": "OAuth required scopes: OR.Jobs or OR.Jobs.Read.\r\n\r\nRequired permissions: Jobs.View."
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Folder/OrganizationUnit Id",
"key": "X-UIPATH-OrganizationUnitId",
"value": "12575632"
}
],
"url": {
"raw": "{{baseUrl}}/odata/Jobs?mandatoryPermissions=eiusmod officia pariatur&mandatoryPermissions=amet eiusmod nulla dolore&atLeastOnePermissions=eiusmod officia pariatur&atLeastOnePermissions=amet eiusmod nulla dolore&$expand=esse sit qui&$filter=esse sit qui&$select=esse sit qui&$orderby=esse sit qui&$top=12575632&$skip=12575632&$count=true",
"host": [
"{{baseUrl}}"
],
"path": [
"odata",
"Jobs"
],
"query": [
{
"key": "mandatoryPermissions",
"value": "eiusmod officia pariatur"
},
{
"key": "mandatoryPermissions",
"value": "amet eiusmod nulla dolore"
},
{
"key": "atLeastOnePermissions",
"value": "eiusmod officia pariatur"
},
{
"key": "atLeastOnePermissions",
"value": "amet eiusmod nulla dolore"
},
{
"key": "$expand",
"value": "esse sit qui"
},
{
"key": "$filter",
"value": "esse sit qui"
},
{
"key": "$select",
"value": "esse sit qui"
},
{
"key": "$orderby",
"value": "esse sit qui"
},
{
"key": "$top",
"value": "12575632"
},
{
"key": "$skip",
"value": "12575632"
},
{
"key": "$count",
"value": "true"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"value\": [\n {\n \"Key\": \"urn:uuid:be08766e-ac51-bb45-5501-0a3dc5154af2\",\n \"StartTime\": \"1968-12-05T22:17:50.256Z\",\n \"EndTime\": \"1987-05-29T17:04:27.173Z\",\n \"State\": \"Running\",\n \"JobPriority\": \"Normal\",\n \"Robot\": {\n \"HostingType\": \"Standard\",\n \"Name\": \"ve\",\n \"Type\": \"RpaDeveloper\",\n \"Username\": \"exercitation et ea\",\n \"LicenseKey\": \"elit in\",\n \"MachineName\": \"irure Ut mollit dolore\",\n \"MachineId\": -25291783,\n \"ExternalName\": \"laboris commodo dolor do\",\n \"Description\": \"culpa eu consequat\",\n \"ProvisionType\": \"Automatic\",\n \"Password\": \"officia eu ut cupidatat\",\n \"CredentialStoreId\": 68306960,\n \"UserId\": 31877342,\n \"Enabled\": true,\n \"CredentialType\": \"Default\",\n \"Environments\": [\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n },\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n }\n ],\n \"RobotEnvironments\": \"non exercitation ut dolor\",\n \"ExecutionSettings\": {},\n \"IsExternalLicensed\": false,\n \"LimitConcurrentExecution\": false,\n \"Id\": -59332040\n },\n \"Release\": {\n \"Name\": \"sed in aliquip consequat\",\n \"ProcessKey\": \"exercitation\",\n \"ProcessVersion\": \"amet\",\n \"Key\": \"velit ipsum ut\",\n \"IsLatestVersion\": false,\n \"IsProcessDeleted\": true,\n \"Description\": \"dolore\",\n \"EnvironmentId\": -41748387,\n \"EnvironmentName\": \"esse culpa\",\n \"Environment\": {\n \"Name\": \"ea dolor\",\n \"Description\": \"cillum Duis enim\",\n \"Robots\": [\n {\n \"HostingType\": \"Standard\",\n \"Name\": \"magna adip\",\n \"Type\": \"Development\",\n \"Username\": \"dolore ex\",\n \"LicenseKey\": \"nulla veniam dolor proident ipsum\",\n \"MachineName\": \"deserunt sed aute reprehenderit\",\n \"MachineId\": 99549561,\n \"ExternalName\": \"ad laboris veniam sint incididunt\",\n \"Description\": \"Ut commodo\",\n \"ProvisionType\": \"Automatic\",\n \"Password\": \"reprehenderit\",\n \"CredentialStoreId\": -86457645,\n \"UserId\": -62740279,\n \"Enabled\": false,\n \"CredentialType\": \"Default\",\n \"Environments\": [\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n },\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n }\n ],\n \"RobotEnvironments\": \"fugiat labore sunt non\",\n \"ExecutionSettings\": {},\n \"IsExternalLicensed\": false,\n \"LimitConcurrentExecution\": false,\n \"Id\": -57032659\n },\n {\n \"HostingType\": \"Standard\",\n \"Name\": \"ut\",\n \"Type\": \"Studio\",\n \"Username\": \"ipsum fugiat\",\n \"LicenseKey\": \"laboris\",\n \"MachineName\": \"nisi consequat nostrud adipisicing\",\n \"MachineId\": -86957591,\n \"ExternalName\": \"consequat nulla culpa\",\n \"Description\": \"quis proident\",\n \"ProvisionType\": \"Automatic\",\n \"Password\": \"dolor laborum dolore exercitation\",\n \"CredentialStoreId\": -50712714,\n \"UserId\": -77316487,\n \"Enabled\": true,\n \"CredentialType\": \"NCipher\",\n \"Environments\": [\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n },\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n }\n ],\n \"RobotEnvironments\": \"consectetur proident\",\n \"ExecutionSettings\": {},\n \"IsExternalLicensed\": false,\n \"LimitConcurrentExecution\": false,\n \"Id\": 61973728\n }\n ],\n \"Type\": \"Dev\",\n \"Id\": -81564071\n },\n \"EntryPointId\": 65883382,\n \"EntryPoint\": {\n \"UniqueId\": \"33d009ac-efb0-a268-39d6-f418e596355f\",\n \"Path\": \"ipsum enim est sunt\",\n \"InputArguments\": \"quis incididunt sed aliquip laboris\",\n \"OutputArguments\": \"labore in a\",\n \"DataVariation\": {\n \"Content\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"ContentType\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"Id\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"Id\": -88661283\n },\n \"InputArguments\": \"aliqua laborum id reprehenderit irure\",\n \"ProcessType\": \"Process\",\n \"SupportsMultipleEntryPoints\": false,\n \"RequiresUserInteraction\": true,\n \"CurrentVersion\": {\n \"ReleaseId\": 74749251,\n \"VersionNumber\": \"et sed in\",\n \"CreationTime\": \"2004-08-18T18:18:03.338Z\",\n \"ReleaseName\": \"culpa irure eiusmod cillum\",\n \"Id\": -2823220\n },\n \"ReleaseVersions\": [\n {\n \"ReleaseId\": 98978237,\n \"VersionNumber\": \"dolor\",\n \"CreationTime\": \"1946-05-25T08:32:13.398Z\",\n \"ReleaseName\": \"cillum amet do sit\",\n \"Id\": 20089819\n },\n {\n \"ReleaseId\": -81798741,\n \"VersionNumber\": \"commodo\",\n \"CreationTime\": \"1948-07-19T18:02:36.929Z\",\n \"ReleaseName\": \"commodo ut\",\n \"Id\": -50835643\n }\n ],\n \"Arguments\": {\n \"Input\": \"cupidatat nulla dolore laboris\",\n \"Output\": \"irure enim\"\n },\n \"ProcessSettings\": {\n \"ErrorRecordingEnabled\": false,\n \"Duration\": 21017457,\n \"Frequency\": -78467124,\n \"Quality\": -81865886,\n \"AutoStartProcess\": false,\n \"AlwaysRunning\": false\n },\n \"AutoUpdate\": true,\n \"FeedId\": \"b75e256e-424d-3bf4-0039-f805bddcfa1c\",\n \"JobPriority\": \"Normal\",\n \"CreationTime\": \"1968-10-01T15:48:41.828Z\",\n \"OrganizationUnitId\": 83258498,\n \"OrganizationUnitFullyQualifiedName\": \"deserunt Excepteur velit fugiat ipsum\",\n \"Id\": 97579630\n },\n \"Source\": \"in sed eiusmod officia\",\n \"SourceType\": \"Manual\",\n \"BatchExecutionKey\": \"0af7775b-abfd-b5da-a616-c1368d064956\",\n \"Info\": \"elit qui cupidatat Excepteur irure\",\n \"CreationTime\": \"2011-03-20T05:47:21.122Z\",\n \"StartingScheduleId\": -96622782,\n \"ReleaseName\": \"aliqua cillum do\",\n \"Type\": \"Attended\",\n \"InputArguments\": \"mollit et anim Duis la\",\n \"OutputArguments\": \"nisi eu\",\n \"HostMachineName\": \"ex nisi est\",\n \"HasMediaRecorded\": true,\n \"PersistenceId\": \"7d168d12-cdee-3fc1-6573-e51cf722927c\",\n \"ResumeVersion\": 80821028,\n \"StopStrategy\": \"Kill\",\n \"RuntimeType\": \"Studio\",\n \"RequiresUserInteraction\": true,\n \"ReleaseVersionId\": -14684718,\n \"EntryPointPath\": \"irure ex\",\n \"OrganizationUnitId\": -47866254,\n \"OrganizationUnitFullyQualifiedName\": \"in dolor adipisicing irure fugiat\",\n \"Reference\": \"veniam quis\",\n \"ProcessType\": \"TestAutomationProcess\",\n \"Id\": 74454915\n },\n {\n \"Key\": \"urn:uuid:ebc451f5-37de-ca57-6a04-841f283e3db3\",\n \"StartTime\": \"2015-06-26T01:29:47.772Z\",\n \"EndTime\": \"1975-12-07T06:11:09.831Z\",\n \"State\": \"Terminating\",\n \"JobPriority\": \"Normal\",\n \"Robot\": {\n \"HostingType\": \"Floating\",\n \"Name\": \"reprehenderit mag\",\n \"Type\": \"NonProduction\",\n \"Username\": \"amet\",\n \"LicenseKey\": \"in\",\n \"MachineName\": \"veniam sint Duis in\",\n \"MachineId\": -69775421,\n \"ExternalName\": \"sit esse in in\",\n \"Description\": \"mollit laboris et adipisicing\",\n \"ProvisionType\": \"Manual\",\n \"Password\": \"mollit exercitation\",\n \"CredentialStoreId\": -60643044,\n \"UserId\": 69734890,\n \"Enabled\": false,\n \"CredentialType\": \"NCipher\",\n \"Environments\": [\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n },\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n }\n ],\n \"RobotEnvironments\": \"fugiat velit\",\n \"ExecutionSettings\": {},\n \"IsExternalLicensed\": true,\n \"LimitConcurrentExecution\": true,\n \"Id\": -10649011\n },\n \"Release\": {\n \"Name\": \"exer\",\n \"ProcessKey\": \"esse irure sunt\",\n \"ProcessVersion\": \"commodo esse\",\n \"Key\": \"et\",\n \"IsLatestVersion\": false,\n \"IsProcessDeleted\": false,\n \"Description\": \"cillum elit sint proident laboris\",\n \"EnvironmentId\": -28668699,\n \"EnvironmentName\": \"fugiat dolor\",\n \"Environment\": {\n \"Name\": \"aliquip in \",\n \"Description\": \"ullamco Ut ipsum\",\n \"Robots\": [\n {\n \"HostingType\": \"Standard\",\n \"Name\": \"veniam irure\",\n \"Type\": \"Unattended\",\n \"Username\": \"exercitation eu\",\n \"LicenseKey\": \"eu\",\n \"MachineName\": \"laborum non ut\",\n \"MachineId\": -97603824,\n \"ExternalName\": \"do\",\n \"Description\": \"commodo\",\n \"ProvisionType\": \"Manual\",\n \"Password\": \"amet\",\n \"CredentialStoreId\": -46683638,\n \"UserId\": -79507069,\n \"Enabled\": false,\n \"CredentialType\": \"SafeNet\",\n \"Environments\": [\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n },\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n }\n ],\n \"RobotEnvironments\": \"ut nisi cupidatat\",\n \"ExecutionSettings\": {},\n \"IsExternalLicensed\": true,\n \"LimitConcurrentExecution\": false,\n \"Id\": 54910452\n },\n {\n \"HostingType\": \"Standard\",\n \"Name\": \"ipsum labor\",\n \"Type\": \"TestAutomation\",\n \"Username\": \"sed enim anim\",\n \"LicenseKey\": \"laboris ut officia id\",\n \"MachineName\": \"quis in\",\n \"MachineId\": -90219792,\n \"ExternalName\": \"in pariatur laborum sit\",\n \"Description\": \"minim fugiat nisi dolore consectetur\",\n \"ProvisionType\": \"Manual\",\n \"Password\": \"officia cupidatat\",\n \"CredentialStoreId\": 43407097,\n \"UserId\": -57075544,\n \"Enabled\": false,\n \"CredentialType\": \"SafeNet\",\n \"Environments\": [\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n },\n {\n \"value\": \"<Circular reference to #/components/schemas/EnvironmentDto detected>\"\n }\n ],\n \"RobotEnvironments\": \"Duis proident irure\",\n \"ExecutionSettings\": {},\n \"IsExternalLicensed\": true,\n \"LimitConcurrentExecution\": true,\n \"Id\": -9267781\n }\n ],\n \"Type\": \"Prod\",\n \"Id\": -62000928\n },\n \"EntryPointId\": -90692421,\n \"EntryPoint\": {\n \"UniqueId\": \"urn:uuid:d301be4a-2392-bf86-7e46-bb8be011fbf7\",\n \"Path\": \"velit minim a\",\n \"InputArguments\": \"aliquip eu reprehenderit sit\",\n \"OutputArguments\": \"in Lorem sint\",\n \"DataVariation\": {\n \"Content\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"ContentType\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n },\n \"Id\": {\n \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n }\n },\n \"Id\": -7344118\n },\n \"InputArguments\": \"commodo aute\",\n \"ProcessType\": \"TestAutomationProcess\",\n \"SupportsMultipleEntryPoints\": true,\n \"RequiresUserInteraction\": true,\n \"CurrentVersion\": {\n \"ReleaseId\": 81406107,\n \"VersionNumber\": \"id dolor fugiat est\",\n \"CreationTime\": \"1985-09-08T00:08:37.146Z\",\n \"ReleaseName\": \"amet nisi in et\",\n \"Id\": 18866201\n },\n \"ReleaseVersions\": [\n {\n \"ReleaseId\": -18017135,\n \"VersionNumber\": \"laboris\",\n \"CreationTime\": \"2010-11-11T00:55:45.791Z\",\n \"ReleaseName\": \"s\",\n \"Id\": -24543215\n },\n {\n \"ReleaseId\": 55664279,\n \"VersionNumber\": \"sint\",\n \"CreationTime\": \"2017-11-30T09:41:33.627Z\",\n \"ReleaseName\": \"laboris dolore\",\n \"Id\": 98955952\n }\n ],\n \"Arguments\": {\n \"Input\": \"laboris Ut eiusmod ad occaecat\",\n \"Output\": \"dolor ut aliquip Lorem\"\n },\n \"ProcessSettings\": {\n \"ErrorRecordingEnabled\": true,\n \"Duration\": -46266930,\n \"Frequency\": 79484330,\n \"Quality\": 57996402,\n \"AutoStartProcess\": false,\n \"AlwaysRunning\": false\n },\n \"AutoUpdate\": true,\n \"FeedId\": \"ba07e4b6-b53b-9353-118a-b30abad1721a\",\n \"JobPriority\": \"Low\",\n \"CreationTime\": \"2018-12-13T23:39:20.742Z\",\n \"OrganizationUnitId\": -70783962,\n \"OrganizationUnitFullyQualifiedName\": \"ullamco dolor\",\n \"Id\": -27097135\n },\n \"Source\": \"elit exercitation\",\n \"SourceType\": \"Schedule\",\n \"BatchExecutionKey\": \"8ab4e543-f97f-69ee-ff36-3957c3150367\",\n \"Info\": \"deserunt ullamco non \",\n \"CreationTime\": \"2017-03-10T11:50:24.671Z\",\n \"StartingScheduleId\": 95117699,\n \"ReleaseName\": \"sunt commodo ex in ut\",\n \"Type\": \"Attended\",\n \"InputArguments\": \"cupid\",\n \"OutputArguments\": \"enim ad\",\n \"HostMachineName\": \"elit Lorem\",\n \"HasMediaRecorded\": false,\n \"PersistenceId\": \"urn:uuid:cdafed65-066d-922a-b8e4-414a65fc1ee1\",\n \"ResumeVersion\": 96117442,\n \"StopStrategy\": \"SoftStop\",\n \"RuntimeType\": \"CitizenDeveloper\",\n \"RequiresUserInteraction\": true,\n \"ReleaseVersionId\": 49481835,\n \"EntryPointPath\": \"culpa enim\",\n \"OrganizationUnitId\": 73582213,\n \"OrganizationUnitFullyQualifiedName\": \"in Lorem ex\",\n \"Reference\": \"sunt cupidatat id\",\n \"ProcessType\": \"TestAutomationProcess\",\n \"Id\": 15658384\n }\n ]\n}"
}
]
}