{"info":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","description":"<html><head></head><body><h4 id=\"what-is-this\">What is this?</h4>\n<p>A collection of (what we think are) the most useful API calls for UiPath Orchestrator.</p>\n<h4 id=\"how-does-it-work\">How does it work?</h4>\n<p>Just <a href=\"https://learning.getpostman.com/docs/postman/environments_and_globals/manage_environments/#creating-a-new-environment\">create a Postman environment</a> with the following variables and start making calls.</p>\n<p><strong>For Cloud Orchestrator:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td><a href=\"https://platform.uipath.com\">https://platform.uipath.com</a>/[Account Name]/[Tenant Logical Name]</td>\n</tr>\n<tr>\n<td>userKey</td>\n<td>[your User Key]</td>\n</tr>\n<tr>\n<td>clientId</td>\n<td>[your Client ID]</td>\n</tr>\n<tr>\n<td>(Optional) folderId</td>\n<td>[a folder/org unit ID]</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>For On-Premise Orchestrator:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url</td>\n<td>[your Orchestrator URL]</td>\n</tr>\n<tr>\n<td>tenantName</td>\n<td>[your Tenant]</td>\n</tr>\n<tr>\n<td>usernameOrEmailAddress</td>\n<td>[your Username]</td>\n</tr>\n<tr>\n<td>password</td>\n<td>[your Password]</td>\n</tr>\n<tr>\n<td>(Optional) folderId</td>\n<td>[a folder/org unit ID]</td>\n</tr>\n</tbody>\n</table>\n</div><p><em>* Notice that the folderId variable is optional. If none is provided, your first Folder/Organization Unit will be used. This is usually named Default.</em></p>\n<h4 id=\"what-about--authentication-and-token-refreshing\">What about  Authentication and Token Refreshing??</h4>\n<p>Don't sweat it. This collection uses those environment variables to take care of it all automatically in the background. Just press send and your calls will go through without a problem ;)</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"7569010","collectionId":"09d9f34a-c597-4699-b9a5-3d0c58070756","publishedId":"SzYevayf","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-04-08T11:04:33.000Z"},"item":[{"name":"How to run a process","item":[{"name":"1a. Authenticate (Cloud)","event":[{"listen":"test","script":{"id":"b30e8e65-daf3-4845-8913-4368414544dd","exec":["pm.test(\"Token Saved\", function () {","    var oldToken = pm.environment.get(\"token\");","    var jsonData = pm.response.json();","    ","    pm.environment.set(\"token\", jsonData.access_token);","    pm.expect(pm.environment.get(\"token\")).to.not.equal(oldToken);","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"95a3df60-fdea-4a45-ad83-e8d73a2b1562","exec":["function GetTenant(url) {","    var pieces = url.split('/');","    ","    // Check if user formatted the url correctly","    if (pieces.length < 5)","        throw \"Detected an invalid Cloud URL. Your URL must be in the form 'https://<platform>.uipath.com/<account logical name>/<tenant logical name>\";","        ","    // Return the last slug, which will be the tenant name","    return pieces.pop();","}","    ","// Get URL","var url = pm.environment.get(\"url\");","","// Check if cloud URL","if (url.includes(\"uipath.com\")) {","    // Extract tenant from URL","    var tenant = GetTenant(url);","    pm.environment.set(\"tenantName\", tenant);","}","","// Throw error if url is incorrect","else {","    throw \"This authentication method may only be used with Cloud Orchestrators (i.e. those hosted by uipath.com. Please change your URL (\" + url + \") if you intend to use a Cloud-hosted Orchestrator.\";   ","}"],"type":"text/javascript"}}],"id":"fa671a8c-ef89-4500-8d85-cca6ec8fd249","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"grant_type\": \"refresh_token\",\r\n    \"client_id\": \"{{clientId}}\",\r\n    \"refresh_token\": \"{{userKey}}\"\r\n}"},"url":"https://account.uipath.com/oauth/token","description":"<p><strong>FOR CLOUD ORCHESTRATOR USERS</strong></p>\n<p>The first step is to send Orchestrator your <strong><em>Client ID</em></strong> and <strong><em>User Key</em></strong> so it knows who is making these calls. Orchestrator will return a token that authenticates all subsequent actions.</p>\n<p><strong>Notes:</strong></p>\n<ul>\n<li><p>The URL for this call differs from the rest. It is <a href=\"https://account.uipath.com\">https://account.uipath.com</a>.</p>\n</li>\n<li><p>All calls to the Cloud API require the <code>X-UIPATH-TenantName</code> header. Tenant is extracted here from the URL in your environment.</p>\n</li>\n<li><p>Don't worry about copying and pasting any tokens once authenticated; this collection does it for you! You can make any call now and it will first ensure that a valid token already exists, retrieving a new token otherwise.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["oauth","token"],"host":["account","uipath","com"],"query":[],"variable":[]}},"response":[{"id":"a4af3617-a4e3-453c-9e9b-891af27317c8","name":"Authenticate (Cloud)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"grant_type\": \"refresh_token\",\r\n    \"client_id\": \"{{clientId}}\",\r\n    \"refresh_token\": \"{{userKey}}\"\r\n}"},"url":"https://account.uipath.com/oauth/token"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"access_token\": \"abcdefghijklmnopqrstuvwxyz1234567890\",\r\n    \"id_token\": \"z0y9x8w7v6u5t4s3r2q1ponmlkjihgfedcba\",\r\n    \"scope\": \"openid profile email offline_access\",\r\n    \"expires_in\": 86400,\r\n    \"token_type\": \"Bearer\"\r\n}"}],"_postman_id":"fa671a8c-ef89-4500-8d85-cca6ec8fd249"},{"name":"1b. Authenticate (On-Premise)","event":[{"listen":"test","script":{"id":"b30e8e65-daf3-4845-8913-4368414544dd","exec":["pm.test(\"Token Saved\", function () {","    var oldToken = pm.globals.get(\"token\");","    var jsonData = pm.response.json();","    ","    pm.globals.set(\"token\", jsonData.result);","    pm.expect(pm.globals.get(\"token\")).to.not.equal(oldToken);","});"],"type":"text/javascript"}}],"id":"f26534e7-b7bb-4206-a4be-7dd6def29cec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":""}],"body":{"mode":"raw","raw":"{\n\t\"usernameOrEmailAddress\": \"{{usernameOrEmailAddress}}\",\n\t\"tenancyName\": \"{{tenancyName}}\",\n\t\"password\": \"{{password}}\"\n}"},"url":"/api/Account/Authenticate","description":"<p><strong>FOR ON-PREMISE ORCHESTRATOR USERS</strong></p>\n<p>The first step is to send Orchestrator your <strong><em>tenant name</em></strong>, <strong><em>username</em></strong>, and <strong><em>password</em></strong> so it knows who is making these calls. Orchestrator will return a token that authenticates all subsequent actions.</p>\n<p><strong>Note:</strong> Don't worry about copying and pasting any tokens; this Postman collection does it for you! You can make any call and it will first ensure that a valid token already exists, retrieving a new token otherwise.</p>\n","urlObject":{"path":["api","Account","Authenticate"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"11dc87bf-c1b4-4e13-980e-514bf99ca996","name":"Authenticate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\n\t\"tenancyName\": \"{{tenancyName}}\",\n\t\"usernameOrEmailAddress\": \"{{usernameOrEmailAddress}}\",\n\t\"password\": \"{{password}}\"\n}"},"url":"/api/Account/Authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"43b30aa3fdd1bf07-FRA","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"798","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 16 Jul 2018 08:19:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\n    \"result\": \"ND_kEaqVx4__SQ0zNEA3vV15ovYqXvpHnpYEnbKKHSjcc0ENIrOzgmj67uXOAxq--lyAvyUMIRp0i0XAAIOQHA_ekFz6idQBCYFKvRTWttYs8xD1pRRIP-pchsbJYhI-QVxrrd0H7PXourk6y0Nt049qWYP-2XrU6oziEX7usl6zK45pOQ4Iut5nmOFQsnd5IMIGBRmdH0fh3hbCtSgQ22S28a44PZHeRCIqb5gKMQKZ0UGvl4sgvw6EFygybPajmPKHQ-oAzNpXamMeicq7y2AM7wJWoUIalE7O0Z3DPogi0U47CqtVVmJfQ4R7OoNM8MhIlqfPoN-IEIULPll4fgPDAgY54iYMYLbXgrFBjSEC1lGMpkTO-40xBbIjoBeL0OV3mVazgZcysqQ7BcwvtpRnZX_VK4V_Pwhzt4ZItsCFS8yOQM0FblT6LBn87JZlQ3nx9FIEo9pny0kHo9v9QJ_iU9nsFNPB71qa1JU6apLBhq5Rj7_PSrm0CfPOizIXRuq0GZ2uXdseR0Xk79-123\",\n    \"targetUrl\": null,\n    \"success\": true,\n    \"error\": null,\n    \"unAuthorizedRequest\": false,\n    \"__abp\": true\n}"}],"_postman_id":"f26534e7-b7bb-4206-a4be-7dd6def29cec"},{"name":"2. Releases - Get by name","event":[{"listen":"test","script":{"id":"c8ab4bbb-371d-46ce-b328-e6b67c279230","exec":[""],"type":"text/javascript"}}],"id":"c1a359e0-caa2-43ce-ae41-8a58f4d17d1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Releases?$filter=ProcessKey eq 'Hello'","description":"<p>So you've created a <strong>Process</strong> in UiPath Studio and published it to Orchestrator. Here's where you specify that process, by name, in order to start it remotely.</p>\n<p>Within the URL, simply replace the word <code>Hello</code> with the name of your process and this call will return the <code>ReleaseKey</code> that will identify your process in step 4.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Releases"],"host":[""],"query":[{"key":"$filter","value":"ProcessKey eq 'Hello'"}],"variable":[]}},"response":[{"id":"468b5079-ecaf-40f8-be65-2ce8291adb17","name":"2. Get the Process","originalRequest":{"method":"GET","header":[],"url":{"raw":"/odata/Releases?$filter=ProcessKey eq 'Hello'","host":[""],"path":["odata","Releases"],"query":[{"key":"$filter","value":"ProcessKey eq 'Hello'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Jul 2019 23:08:51 GMT"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"8.0"},{"key":"OData-Version","value":"4.0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Set-Cookie","value":"; SameSite=lax"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4f0c85eb7e8c3892-ATL"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Releases\",\n    \"@odata.count\": 1,\n    \"value\": [\n        {\n            \"Key\": \"0764f4a-2ce0-41b9-r738-4575566f3756\",\n            \"ProcessKey\": \"Hello\",\n            \"ProcessVersion\": \"1.0.6913.24377\",\n            \"IsLatestVersion\": false,\n            \"IsProcessDeleted\": false,\n            \"Description\": null,\n            \"Name\": \"Hello_playground\",\n            \"EnvironmentId\": 3210,\n            \"EnvironmentName\": \"playground\",\n            \"InputArguments\": \"{}\",\n            \"QueueDefinitionId\": null,\n            \"QueueDefinitionName\": null,\n            \"Id\": 12345,\n            \"Arguments\": {\n                \"Input\": \"[{\\\"name\\\":\\\"greeting\\\",\\\"type\\\":\\\"System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\\\",\\\"required\\\":false,\\\"hasDefault\\\":false},{\\\"name\\\":\\\"url\\\",\\\"type\\\":\\\"System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\\\",\\\"required\\\":false,\\\"hasDefault\\\":false},{\\\"name\\\":\\\"username\\\",\\\"type\\\":\\\"System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\\\",\\\"required\\\":false,\\\"hasDefault\\\":true},{\\\"name\\\":\\\"password\\\",\\\"type\\\":\\\"System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\\\",\\\"required\\\":false,\\\"hasDefault\\\":true}]\",\n                \"Output\": \"[{\\\"name\\\":\\\"greeting\\\",\\\"type\\\":\\\"System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\\\",\\\"required\\\":false,\\\"hasDefault\\\":false}]\"\n            },\n            \"ProcessSettings\": null\n        }\n    ]\n}"}],"_postman_id":"c1a359e0-caa2-43ce-ae41-8a58f4d17d1a"},{"name":"3. Robots - Get by name","id":"015a0da3-f9a7-4bee-bc72-5cfc78c57bdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Robots?$filter=Name eq 'joe'","description":"<p>If you'd like the process to run on a specific <strong>Robot</strong>, you'll need its ID. Similarly to step 2, within the URL, replace <code>joe</code> with the name of your robot. Save the returned <code>Id</code> for step 4.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Robots"],"host":[""],"query":[{"key":"$filter","value":"Name eq 'joe'"}],"variable":[]}},"response":[{"id":"72195955-0cea-4269-9336-c66e36126210","name":"3. Get the Robot","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"/odata/Robots?$filter=Name eq 'joe'","host":[""],"path":["odata","Robots"],"query":[{"key":"$filter","value":"Name eq 'joe'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Jul 2019 22:47:45 GMT"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"8.0"},{"key":"OData-Version","value":"4.0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Set-Cookie","value":"; SameSite=lax"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4f0c67296ee7d318-ATL"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Robots\",\n    \"@odata.count\": 1,\n    \"value\": [\n        {\n            \"LicenseKey\": null,\n            \"MachineName\": \"SOMELAPTOP\",\n            \"MachineId\": 09876,\n            \"Name\": \"joe\",\n            \"Username\": \"dean\",\n            \"Description\": null,\n            \"Version\": \"undeclared\",\n            \"Type\": \"Development\",\n            \"HostingType\": \"Standard\",\n            \"Password\": null,\n            \"CredentialType\": null,\n            \"RobotEnvironments\": \"playground\",\n            \"Id\": 12345,\n            \"ExecutionSettings\": null\n        }\n    ]\n}"}],"_postman_id":"015a0da3-f9a7-4bee-bc72-5cfc78c57bdc"},{"name":"4. Jobs - Start job with inputs","id":"ccc31f65-bcd4-495d-a22e-a5e71de9f449","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{ \"startInfo\":\r\n   { \"ReleaseKey\": \"5b754c63-5d1a-4c37-bb9b-74b69e4934bf\",\r\n     \"Strategy\": \"Specific\",\r\n     \"RobotIds\": [ 1553 ],\r\n     \"JobsCount\": 0,\r\n     \"Source\": \"Manual\",\r\n     \"InputArguments\": \"{\\\"message\\\":\\\"Aloha\\\"}\"\r\n   } \r\n}"},"url":"/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs","description":"<p>Within Orchestrator, a <strong>Process</strong> that is running or has been run is called a <strong>Job</strong>. To start a <strong>Job</strong>, navigate to the body of this call and add the release key obtained in step 2 to the first field.</p>\n<p>Now look at the <code>Strategy</code> field. This dictates how the process should be run and has 3 options:</p>\n<ol>\n<li><em>Specific</em> - The process will run on a specific set of robots, whose IDs are indicated in the <code>RobotIds</code> field.</li>\n<li><em>JobsCount</em> - The process will run x times where x is the value of the <code>JobsCount</code> field. Use this strategy if you don't care on which robots the job runs. Orchestrator will automatically allocate the work to any available robots.</li>\n<li><em>All</em> - The process will run once on all robots.</li>\n</ol>\n<p>Lastly, if your job has any input parameters, they can be sent as a JSON string in the <code>InputArguments</code> field. If it does not, this field will be ignored.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Jobs","UiPath.Server.Configuration.OData.StartJobs"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"a1743bf6-76a4-4e95-a78b-ecbe4984ae09","name":"Jobs - Start job with inputs","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{ \"startInfo\":\r\n   { \"ReleaseKey\": \"0764f4a-2ce0-41b9-r738-4575566f3756\",\r\n     \"Strategy\": \"Specific\",\r\n     \"RobotIds\": [ 12345 ],\r\n     \"NoOfRobots\": 0,\r\n     \"Source\": \"Manual\",\r\n     \"InputArguments\": \"{\\\"greeting\\\":\\\"Aloha\\\"}\"\r\n   } \r\n}"},"url":"/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Expose-Headers","value":"Request-Context","name":"Access-Control-Expose-Headers","description":"Lets a server whitelist headers that browsers are allowed to access."},{"key":"CF-RAY","value":"45dce00e5ae5714f-ORD","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"486","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 21 Sep 2018 13:28:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Request-Context","value":"appId=cid-v1:7ebf97e7-ed13-4640-bfa8-136a94cd5294","name":"Request-Context","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"6.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"beta.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"beta.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"beta.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":true,"domain":"beta.uipath.com","path":"/","secure":false,"value":"7257e4e124a8dda60e5509939bf9c2e4e6e40cd21b3b6ea3baa3c44843eef5ff","key":"ARRAffinity"}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://beta.uipath.com/odata/$metadata#Jobs\",\n    \"value\": [\n        {\n            \"Key\": \"b618cdfd-8714-4dbf-9a00-0586a8953c90\",\n            \"StartTime\": null,\n            \"EndTime\": null,\n            \"State\": \"Pending\",\n            \"Source\": \"Manual\",\n            \"SourceType\": \"Manual\",\n            \"BatchExecutionKey\": \"abbbb5de-d46a-4b9b-8f73-8a3247be0a0e\",\n            \"Info\": null,\n            \"CreationTime\": \"2018-09-21T13:28:31.1449691Z\",\n            \"StartingScheduleId\": null,\n            \"ReleaseName\": \"Heyyo_playground\",\n            \"Type\": \"Unattended\",\n            \"InputArguments\": \"{\\\"greeting\\\":\\\"Aloha\\\"}\",\n            \"OutputArguments\": null,\n            \"Id\": 160856\n        }\n    ]\n}"}],"_postman_id":"ccc31f65-bcd4-495d-a22e-a5e71de9f449"}],"id":"df09ecf4-66bc-4f5e-8552-b2d8526c9094","description":"<p>Run a process, start a job, trigger a robot--whichever terminology you use, the most common action done through the Orchestrator API is always going to be this: telling a robot to do something. To help cut out the noise, here are the steps needed and API calls involved to have a robot execute a workflow you've created using the Orchestrator API.</p>\n<ul>\n<li>Cloud Users (platform.uipath.com), <a href=\"#07dbc895-0d81-4867-b6b5-5eb83ade9c03\">start here</a>.</li>\n<li>On-Premise Users, <a href=\"#a784a3bb-71f5-493a-a319-5f7c34e294fa\">start here</a>.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"c4f6be69-8abd-41e0-a5d7-70026cd29091","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5579b519-ee4f-4773-9fc3-d1921eafed8f","type":"text/javascript","exec":[""]}}],"_postman_id":"df09ecf4-66bc-4f5e-8552-b2d8526c9094","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}}},{"name":"Authenticate (Cloud)","event":[{"listen":"test","script":{"id":"b30e8e65-daf3-4845-8913-4368414544dd","exec":["pm.test(\"Token Saved\", function () {","    var oldToken = pm.environment.get(\"token\");","    var jsonData = pm.response.json();","    ","    pm.environment.set(\"token\", jsonData.access_token);","    pm.expect(pm.environment.get(\"token\")).to.not.equal(oldToken);","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"95a3df60-fdea-4a45-ad83-e8d73a2b1562","exec":["function GetTenant(url) {","    var pieces = url.split('/');","    ","    // Check if user formatted the url correctly","    if (pieces.length < 5)","        throw \"Detected an invalid Cloud URL. Your URL must be in the form 'https://platform.uipath.com/<account logical name>/<tenant logical name>\";","        ","    // Return the last slug, which will be the tenant name","    return pieces.pop();","}","    ","// Get URL","var url = pm.environment.get(\"url\");","","// Check if cloud URL","if (url.includes(\"uipath.com\")) {","    // Extract tenant from URL","    var tenant = GetTenant(url);","    pm.environment.set(\"tenantName\", tenant);","}","","// Throw error if url is incorrect","else {","    throw \"This authentication method may only be used with Cloud Orchestrators (i.e. those hosted by uipath.com. Please change your URL (\" + url + \") if you intend to use a Cloud-hosted Orchestrator.\";   ","}"],"type":"text/javascript"}}],"id":"704dff02-4066-444b-b5d4-8d916f5b567b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"grant_type\": \"refresh_token\",\r\n    \"client_id\": \"{{clientId}}\",\r\n    \"refresh_token\": \"{{userKey}}\"\r\n}"},"url":"https://account.uipath.com/oauth/token","description":"<p>Retrieves an access token using the User Key found in your Cloud RPA console. This token lasts for 24 hours and is made available to authenticate all other calls.</p>\n","urlObject":{"protocol":"https","path":["oauth","token"],"host":["account","uipath","com"],"query":[],"variable":[]}},"response":[{"id":"78ddcb44-0a71-4caf-8210-675648167dae","name":"Authenticate (Cloud)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"grant_type\": \"refresh_token\",\r\n    \"client_id\": \"{{clientId}}\",\r\n    \"refresh_token\": \"{{userKey}}\"\r\n}"},"url":"https://account.uipath.com/oauth/token"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"access_token\": \"abcdefghijklmnopqrstuvwxyz1234567890\",\r\n    \"id_token\": \"z0y9x8w7v6u5t4s3r2q1ponmlkjihgfedcba\",\r\n    \"scope\": \"openid profile email offline_access\",\r\n    \"expires_in\": 86400,\r\n    \"token_type\": \"Bearer\"\r\n}"}],"_postman_id":"704dff02-4066-444b-b5d4-8d916f5b567b"},{"name":"Authenticate (On-Premise)","event":[{"listen":"test","script":{"id":"b30e8e65-daf3-4845-8913-4368414544dd","exec":["pm.test(\"Token Saved\", function () {","    var oldToken = pm.environment.get(\"token\");","    var jsonData = pm.response.json();","    ","    pm.environment.set(\"token\", jsonData.result);","    pm.expect(pm.environment.get(\"token\")).to.not.equal(oldToken);","});"],"type":"text/javascript"}}],"id":"675ec4f9-4fd7-4808-ab63-ed7934841519","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"tenancyName\": \"Default\",\n\t\"usernameOrEmailAddress\": \"admin\",\n\t\"password\": \"1qazXSW@\"\n}"},"url":"https://roqaw2k16app11.deskover.local/api/Account/Authenticate","description":"<p>A method for manually retrieving an authentication token using the login credentials supplied in the Body. This token is then made available to all other calls.</p>\n","urlObject":{"protocol":"https","path":["api","Account","Authenticate"],"host":["roqaw2k16app11","deskover","local"],"query":[],"variable":[]}},"response":[{"id":"abca411e-3ebe-4468-8caa-3e9ecdfe0c73","name":"Authenticate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"","disabled":true}],"body":{"mode":"raw","raw":"{\n\t\"tenancyName\": \"{{tenancyName}}\",\n\t\"usernameOrEmailAddress\": \"{{usernameOrEmailAddress}}\",\n\t\"password\": \"{{password}}\"\n}"},"url":"/api/Account/Authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"43b30aa3fdd1bf07-FRA","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"798","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 16 Jul 2018 08:19:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\n    \"result\": \"ND_kEaqVx4__SQ0zNEA3vV15ovYqXvpHnpYEnbKKHSjcc0ENIrOzgmj67uXOAxq--lyAvyUMIRp0i0XAAIOQHA_ekFz6idQBCYFKvRTWttYs8xD1pRRIP-pchsbJYhI-QVxrrd0H7PXourk6y0Nt049qWYP-2XrU6oziEX7usl6zK45pOQ4Iut5nmOFQsnd5IMIGBRmdH0fh3hbCtSgQ22S28a44PZHeRCIqb5gKMQKZ0UGvl4sgvw6EFygybPajmPKHQ-oAzNpXamMeicq7y2AM7wJWoUIalE7O0Z3DPogi0U47CqtVVmJfQ4R7OoNM8MhIlqfPoN-IEIULPll4fgPDAgY54iYMYLbXgrFBjSEC1lGMpkTO-40xBbIjoBeL0OV3mVazgZcysqQ7BcwvtpRnZX_VK4V_Pwhzt4ZItsCFS8yOQM0FblT6LBn87JZlQ3nx9FIEo9pny0kHo9v9QJ_iU9nsFNPB71qa1JU6apLBhq5Rj7_PSrm0CfPOizIXRuq0GZ2uXdseR0Xk79-123\",\n    \"targetUrl\": null,\n    \"success\": true,\n    \"error\": null,\n    \"unAuthorizedRequest\": false,\n    \"__abp\": true\n}"}],"_postman_id":"675ec4f9-4fd7-4808-ab63-ed7934841519"},{"name":"Assets - Create","id":"df4638c4-ff84-45c4-ba67-89f61e84f6a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Name\": \"Caesar\",\n\t\"ValueScope\": \"Global\",\n\t\"ValueType\": \"Text\",\n\t\"StringValue\": \"Et tu Asset 2\"\n}"},"url":"/odata/Assets","description":"<p>Create a new Asset</p>\n<p>ValueScope: Global or PerRobot</p>\n<p>ValueType: Text, Bool, Integer, or Credential</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Assets"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"6ad45879-2e01-4bed-a3e2-4244779d8372","name":"Assets - Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Name\": \"Caesar\",\n\t\"ValueScope\": \"Global\",\n\t\"ValueType\": \"Text\",\n\t\"StringValue\": \"Et tu Asset 2\"\n}"},"url":"/odata/Assets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"43b31169d9d6bf07-FRA","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"319","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 16 Jul 2018 08:23:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"Location","value":"https://platform.uipath.com/odata/Assets(38355)","name":"Location","description":"Used in redirection, or when a new resource has been created."},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Assets/$entity\",\n    \"Name\": \"Caesar\",\n    \"CanBeDeleted\": true,\n    \"ValueScope\": \"Global\",\n    \"ValueType\": \"Text\",\n    \"Value\": \"Et tu Asset 2\",\n    \"StringValue\": \"Et tu Asset 2\",\n    \"BoolValue\": false,\n    \"IntValue\": 0,\n    \"CredentialUsername\": \"\",\n    \"CredentialPassword\": \"\",\n    \"Id\": 38355,\n    \"KeyValueList\": []\n}"}],"_postman_id":"df4638c4-ff84-45c4-ba67-89f61e84f6a8"},{"name":"Assets - Edit","id":"2804a890-9aaf-4b1f-9a21-f592ff62a82d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Name\": \"Caesar\",\n\t\"ValueScope\": \"Global\",\n\t\"ValueType\": \"Text\",\n\t\"StringValue\": \"Et tu Asset 2\",\n\t\"Id\": 38364\n}"},"url":"/odata/Assets(38364)","description":"<p>Change any characteristic of an Asset--name, scope, type, value...</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Assets(38364)"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"170335c2-f65f-4ee2-a66a-3311e9c8c405","name":"Assets - Edit","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Name\": \"Caesar\",\n\t\"ValueScope\": \"Global\",\n\t\"ValueType\": \"Text\",\n\t\"StringValue\": \"Et tu Asset 2\",\n\t\"Id\": 38364\n}"},"url":"/odata/Assets(38364)"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"CF-RAY","value":"443017885fb791fa-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"0","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Date","value":"Tue, 31 Jul 2018 12:33:11 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":""}],"_postman_id":"2804a890-9aaf-4b1f-9a21-f592ff62a82d"},{"name":"Assets - Get all","event":[{"listen":"test","script":{"id":"c8ab4bbb-371d-46ce-b328-e6b67c279230","exec":[""],"type":"text/javascript"}}],"id":"e1bf8137-93e9-4e9e-b1c7-a10b40f19b96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Assets","description":"<p>Get all Assets. Use query params to narrow the response group.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Assets"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"8e5a7980-8b92-4a41-aab0-d5b6f78daf52","name":"Assets - Get all","originalRequest":{"method":"GET","header":[{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Dec 2019 18:47:31 GMT"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"9.0"},{"key":"OData-Version","value":"4.0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"544a1b60c919f019-EWR"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/deanmauro/dean/odata/$metadata#Assets\",\n    \"@odata.count\": 15,\n    \"value\": [\n        {\n            \"Name\": \"Asset 2\",\n            \"CanBeDeleted\": true,\n            \"ValueScope\": \"Global\",\n            \"ValueType\": \"Text\",\n            \"Value\": \"I would not, Cassius, yet I love him well.\",\n            \"StringValue\": \"I would not, Cassius, yet I love him well.\",\n            \"BoolValue\": false,\n            \"IntValue\": 0,\n            \"CredentialUsername\": \"\",\n            \"CredentialPassword\": \"\",\n            \"ExternalName\": \"\",\n            \"CredentialStoreId\": null,\n            \"HasDefaultValue\": true,\n            \"Description\": null,\n            \"Id\": 8558,\n            \"KeyValueList\": []\n        },\n        {\n            \"Name\": \"blah\",\n            \"CanBeDeleted\": true,\n            \"ValueScope\": \"PerRobot\",\n            \"ValueType\": \"Integer\",\n            \"Value\": null,\n            \"StringValue\": \"\",\n            \"BoolValue\": false,\n            \"IntValue\": 0,\n            \"CredentialUsername\": \"\",\n            \"CredentialPassword\": \"\",\n            \"ExternalName\": \"\",\n            \"CredentialStoreId\": null,\n            \"HasDefaultValue\": false,\n            \"Description\": null,\n            \"Id\": 23446,\n            \"KeyValueList\": []\n        },\n        {\n            \"Name\": \"Caesar\",\n            \"CanBeDeleted\": true,\n            \"ValueScope\": \"Global\",\n            \"ValueType\": \"Text\",\n            \"Value\": \"Et tu Asset 2\",\n            \"StringValue\": \"Et tu Asset 2\",\n            \"BoolValue\": false,\n            \"IntValue\": 0,\n            \"CredentialUsername\": \"\",\n            \"CredentialPassword\": \"\",\n            \"ExternalName\": \"\",\n            \"CredentialStoreId\": null,\n            \"HasDefaultValue\": true,\n            \"Description\": null,\n            \"Id\": 8735,\n            \"KeyValueList\": []\n        }\n    ]\n}"}],"_postman_id":"e1bf8137-93e9-4e9e-b1c7-a10b40f19b96"},{"name":"Assets - Get all + Per Robot Values","event":[{"listen":"test","script":{"id":"c8ab4bbb-371d-46ce-b328-e6b67c279230","exec":[""],"type":"text/javascript"}}],"id":"19d2899f-8f9e-47ec-a0d9-b1c1c37cda3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Assets?$expand=RobotValues","description":"<p>Get all Assets and display Per Robot values in the response. For global Assets, this call provides no extra features.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Assets"],"host":[""],"query":[{"key":"$expand","value":"RobotValues"}],"variable":[]}},"response":[{"id":"769d03d4-93c4-4bd1-ac7f-36da3de4ec61","name":"Assets - Get all (Including Per Robot Values)","originalRequest":{"method":"GET","header":[],"url":{"raw":"/odata/Assets?$expand=RobotValues","host":[""],"path":["odata","Assets"],"query":[{"key":"$expand","value":"RobotValues"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"443012f809dd91fa-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"588","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:30:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://platform.uipath.com/deanmauro/dean/odata/$metadata#Assets\",\r\n    \"@odata.count\": 2,\r\n    \"value\": [\r\n        {\r\n            \"Name\": \"Asset 2\",\r\n            \"CanBeDeleted\": true,\r\n            \"ValueScope\": \"Global\",\r\n            \"ValueType\": \"Text\",\r\n            \"Value\": \"I would not, Cassius, yet I love him well.\",\r\n            \"StringValue\": \"I would not, Cassius, yet I love him well.\",\r\n            \"BoolValue\": false,\r\n            \"IntValue\": 0,\r\n            \"CredentialUsername\": \"\",\r\n            \"CredentialPassword\": \"\",\r\n            \"ExternalName\": \"\",\r\n            \"CredentialStoreId\": null,\r\n            \"HasDefaultValue\": true,\r\n            \"Description\": null,\r\n            \"Id\": 8588,\r\n            \"KeyValueList\": [],\r\n            \"RobotValues\": []\r\n        },\r\n        {\r\n            \"Name\": \"blah\",\r\n            \"CanBeDeleted\": true,\r\n            \"ValueScope\": \"PerRobot\",\r\n            \"ValueType\": \"Integer\",\r\n            \"Value\": null,\r\n            \"StringValue\": \"\",\r\n            \"BoolValue\": false,\r\n            \"IntValue\": 0,\r\n            \"CredentialUsername\": \"\",\r\n            \"CredentialPassword\": \"\",\r\n            \"ExternalName\": \"\",\r\n            \"CredentialStoreId\": null,\r\n            \"HasDefaultValue\": false,\r\n            \"Description\": null,\r\n            \"Id\": 23656,\r\n            \"KeyValueList\": [],\r\n            \"RobotValues\": [\r\n                {\r\n                    \"RobotId\": 33530,\r\n                    \"RobotName\": \"joe\",\r\n                    \"KeyTrail\": \"***4ef589a\",\r\n                    \"ValueType\": \"Integer\",\r\n                    \"StringValue\": \"\",\r\n                    \"BoolValue\": false,\r\n                    \"IntValue\": 1,\r\n                    \"Value\": \"1\",\r\n                    \"CredentialUsername\": \"\",\r\n                    \"CredentialPassword\": \"\",\r\n                    \"ExternalName\": \"\",\r\n                    \"CredentialStoreId\": null,\r\n                    \"Id\": 199104,\r\n                    \"KeyValueList\": []\r\n                },\r\n                {\r\n                    \"RobotId\": 42307,\r\n                    \"RobotName\": \"jose\",\r\n                    \"KeyTrail\": \"***88bvb04\",\r\n                    \"ValueType\": \"Integer\",\r\n                    \"StringValue\": \"\",\r\n                    \"BoolValue\": false,\r\n                    \"IntValue\": 2,\r\n                    \"Value\": \"2\",\r\n                    \"CredentialUsername\": \"\",\r\n                    \"CredentialPassword\": \"\",\r\n                    \"ExternalName\": \"\",\r\n                    \"CredentialStoreId\": null,\r\n                    \"Id\": 199105,\r\n                    \"KeyValueList\": []\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"19d2899f-8f9e-47ec-a0d9-b1c1c37cda3f"},{"name":"Assets - Get by name","event":[{"listen":"test","script":{"id":"c8ab4bbb-371d-46ce-b328-e6b67c279230","exec":[""],"type":"text/javascript"}}],"id":"504a5caa-d8b9-4053-8808-f007425d56f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Assets?$filter=Name eq 'Caesar'","description":"<p>Get a single Asset with the name specified in the $filter param.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Assets"],"host":[""],"query":[{"key":"$filter","value":"Name eq 'Caesar'"}],"variable":[]}},"response":[{"id":"cb66c041-1c5d-4e1a-adaf-dab9acccf1e5","name":"Assets - Get by Name","originalRequest":{"method":"GET","header":[],"url":{"raw":"/odata/Assets?$filter=startswith(Name, 'Asset')","host":[""],"path":["odata","Assets"],"query":[{"key":"$filter","value":"startswith(Name, 'Asset')"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"4430157bfc1591fa-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"354","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:31:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#Assets\",\"@odata.count\":1,\"value\":[{\"Name\":\"Asset 2\",\"CanBeDeleted\":true,\"ValueScope\":\"PerRobot\",\"ValueType\":\"Text\",\"Value\":\"[Value per robot]\",\"StringValue\":null,\"BoolValue\":false,\"IntValue\":0,\"CredentialUsername\":null,\"CredentialPassword\":null,\"Id\":40277,\"KeyValueList\":[]}]}"}],"_postman_id":"504a5caa-d8b9-4053-8808-f007425d56f0"},{"name":"Environments - Get all","event":[{"listen":"test","script":{"id":"c8ab4bbb-371d-46ce-b328-e6b67c279230","exec":[""],"type":"text/javascript"}}],"id":"cf1d25a1-e9eb-4a91-8bd4-cb23b880267c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Environments?$expand=Robots","description":"<p>Get all Assets. Use query params to narrow the response group.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Environments"],"host":[""],"query":[{"key":"$expand","value":"Robots"}],"variable":[]}},"response":[{"id":"35d7d112-45fd-4be4-b61e-c33a48fcd862","name":"Environments - Get all","originalRequest":{"method":"GET","header":[],"url":{"raw":"/odata/Environments?$expand=Robots","host":[""],"path":["odata","Environments"],"query":[{"key":"$expand","value":"Robots"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Feb 2019 18:01:11 GMT"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Length","value":"443"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Set-Cookie","value":"; SameSite=lax"},{"key":"api-supported-versions","value":"7.0"},{"key":"OData-Version","value":"4.0"},{"key":"Request-Context","value":"appId=cid-v1:d00ce63d-0891-41e4-a17c-25b2c5382e49"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4a9170480e5297d4-FRA"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Environments\",\n    \"@odata.count\": 1,\n    \"value\": [\n        {\n            \"Name\": \"playground\",\n            \"Description\": \"Test environment for postman\",\n            \"Type\": \"Dev\",\n            \"Id\": 23282,\n            \"Robots\": [\n                {\n                    \"LicenseKey\": null,\n                    \"MachineName\": \"AnotherFakeOne\",\n                    \"MachineId\": 20967,\n                    \"Name\": \"Cassius\",\n                    \"Username\": \"cassius\",\n                    \"Description\": \"A dev bot for testing\",\n                    \"Version\": null,\n                    \"Type\": \"Development\",\n                    \"HostingType\": \"Standard\",\n                    \"Password\": null,\n                    \"CredentialType\": null,\n                    \"RobotEnvironments\": \"\",\n                    \"Id\": 33420,\n                    \"ExecutionSettings\": null\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"cf1d25a1-e9eb-4a91-8bd4-cb23b880267c"},{"name":"Folders - Get all","id":"9876473f-3e56-4b9c-8b23-136bede392e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"}],"url":"/odata/Folders","description":"<p>Experimental Feature: Retrieves all Organization Units.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Folders"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"e10fe1d0-203c-46de-aa5e-3ae2a16cc87a","name":"Organization Units - Get all","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"/odata/OrganizationUnits"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Wed, 27 Feb 2019 13:49:44 GMT"},{"key":"Content-Type","value":"text/html; charset=utf-8"},{"key":"Content-Length","value":"1028"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Set-Cookie","value":"XSRF-TOKEN=eJhbVvmvo60rErmC3ydbu-EewNysAnyf6tCKVomQvy2n_wBJwC_MQ081rGozSsQ0cryKgfkNmzTmo373xIZ0cwh9Z_rgUXedq8C0YcSTa5PVnatXsl0ELqFvp0aXZG96RXPx9CLeUj_hnbXAZbWC4w2; path=/; secure; SameSite=lax"},{"key":"X-Robots-Tag","value":"noindex, nofollow"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self';script-src 'self' cdn.mxpnl.com;style-src 'self' 'unsafe-inline';img-src 'self' data:;connect-src 'self' ws: wss: api.mixpanel.com https: sentry.io"},{"key":"Request-Context","value":"appId=cid-v1:d00ce63d-0891-41e4-a17c-25b2c5382e49"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4afb1dd2abf16439-FRA"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://beta.uipath.com/odata/$metadata#OrganizationUnits\",\n    \"@odata.count\": 2,\n    \"value\": [\n        {\n            \"DisplayName\": \"Default\",\n            \"Id\": 715\n        },\n        {\n            \"DisplayName\": \"a\",\n            \"Id\": 846\n        }\n    ]\n}"}],"_postman_id":"9876473f-3e56-4b9c-8b23-136bede392e6"},{"name":"Jobs - Get","id":"0e67d867-0c65-4e59-9c89-3f93856b3a51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Jobs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Jobs"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"76c59286-193d-49a5-b825-d133d8e6f542","name":"Jobs - Get","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"/odata/Jobs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"43b31ac2bc21bf07-FRA","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"21650","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 16 Jul 2018 08:30:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Jobs\",\n    \"@odata.count\": 1,\n    \"value\": [\n        {\n            \"Key\": \"f53ea0ce-cd5a-4335-8bcd-b7b3d81c911f\",\n            \"StartTime\": \"2018-01-03T16:20:00.76Z\",\n            \"EndTime\": \"2018-01-03T16:20:05.54Z\",\n            \"State\": \"Successful\",\n            \"Source\": \"Manual\",\n            \"SourceType\": \"Manual\",\n            \"BatchExecutionKey\": \"090770c3-0e54-4b14-921d-0e2f1892876e\",\n            \"Info\": \"Job completed\",\n            \"CreationTime\": \"2018-01-03T16:19:58.747Z\",\n            \"StartingScheduleId\": null,\n            \"ReleaseName\": \"Process1_playground\",\n            \"Type\": \"Unattended\",\n            \"Id\": 377921\n        }\n    ]\n}"}],"_postman_id":"0e67d867-0c65-4e59-9c89-3f93856b3a51"},{"name":"Jobs - Start job","id":"2805d1fa-2270-46b5-8a32-7f59f68f0c07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{ \"startInfo\":\r\n   { \"ReleaseKey\": \"f689e02d-f968-494f-8b37-409a1bd85534\",\r\n     \"Strategy\": \"Specific\",\r\n     \"RobotIds\": [ 9826 ],\r\n     \"JobsCount\": 0,\r\n     \"Source\": \"Manual\" \r\n   } \r\n}"},"url":"/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Jobs","UiPath.Server.Configuration.OData.StartJobs"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"849f9ba0-cf5d-43e1-91cd-b5bf6dc8038c","name":"Jobs - Start job","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{ \"startInfo\":\r\n   { \"ReleaseKey\": \"f689e02d-f968-494f-8b37-409a1bd85534\",\r\n     \"Strategy\": \"Specific\",\r\n     \"RobotIds\": [ 9826 ],\r\n     \"JobsCount\": 0,\r\n     \"Source\": \"Manual\" \r\n   } \r\n}"},"url":"/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"43b31c105eefbf07-FRA","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"425","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 16 Jul 2018 08:30:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Jobs\",\n    \"value\": [\n        {\n            \"Key\": \"b98fd5c2-0f1d-4d73-903b-30dd22d08ee8\",\n            \"StartTime\": null,\n            \"EndTime\": null,\n            \"State\": \"Pending\",\n            \"Source\": \"Manual\",\n            \"SourceType\": \"Manual\",\n            \"BatchExecutionKey\": \"16d4ffb5-58d0-44ff-a39a-6cca1f36bc77\",\n            \"Info\": null,\n            \"CreationTime\": \"2018-07-16T08:30:56.4673722Z\",\n            \"StartingScheduleId\": null,\n            \"ReleaseName\": \"Process1_playground\",\n            \"Type\": \"Unattended\",\n            \"Id\": 1649897\n        }\n    ]\n}"}],"_postman_id":"2805d1fa-2270-46b5-8a32-7f59f68f0c07"},{"name":"Jobs - Start job with inputs","id":"28a8c0b0-dd80-49f4-ad52-15f01cbd0a29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{ \"startInfo\":\r\n   { \"ReleaseKey\": \"5b754c63-5d1a-4c37-bb9b-74b69e4934bf\",\r\n     \"Strategy\": \"Specific\",\r\n     \"RobotIds\": [ 1553 ],\r\n     \"NoOfRobots\": 0,\r\n     \"Source\": \"Manual\",\r\n     \"InputArguments\": \"{\\\"greeting\\\":\\\"Aloha\\\"}\"\r\n   } \r\n}"},"url":"/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs","description":"<p>Starting in v2018.3, jobs can accept input parameters.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Jobs","UiPath.Server.Configuration.OData.StartJobs"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"1eb499d2-7150-49d8-9e2e-54f0d4eceb99","name":"Jobs - Start job with inputs","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{ \"startInfo\":\r\n   { \"ReleaseKey\": \"5b754c63-5d1a-4c37-bb9b-74b69e4934bf\",\r\n     \"Strategy\": \"Specific\",\r\n     \"RobotIds\": [ 1553 ],\r\n     \"NoOfRobots\": 0,\r\n     \"Source\": \"Manual\",\r\n     \"InputArguments\": \"{\\\"message\\\":\\\"Aloha\\\"}\"\r\n   } \r\n}"},"url":"/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"CF-RAY","value":"43b31c105eefbf07-FRA","description":"","type":"text","name":"CF-RAY"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","description":"","type":"text","name":"Cache-Control"},{"key":"Connection","value":"keep-alive","description":"","type":"text","name":"Connection"},{"key":"Content-Length","value":"425","description":"","type":"text","name":"Content-Length"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","description":"","type":"text","name":"Content-Type"},{"key":"Date","value":"Mon, 16 Sep 2018 08:30:56 GMT","description":"","type":"text","name":"Date"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","description":"","type":"text","name":"Expect-CT"},{"key":"OData-Version","value":"4.0","description":"","type":"text","name":"OData-Version"},{"key":"Server","value":"cloudflare","description":"","type":"text","name":"Server"},{"key":"Set-Cookie","value":"; SameSite=lax","description":"","type":"text","name":"Set-Cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","description":"","type":"text","name":"Strict-Transport-Security"},{"key":"X-Content-Type-Options","value":"nosniff","description":"","type":"text","name":"X-Content-Type-Options"},{"key":"X-Frame-Options","value":"DENY","description":"","type":"text","name":"X-Frame-Options"},{"key":"api-supported-versions","value":"5.0","description":"","type":"text","name":"api-supported-versions"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://beta.uipath.com/odata/$metadata#Jobs\",\n    \"value\": [\n        {\n            \"Key\": \"b618cdfd-8714-4dbf-9a00-0586a8953c90\",\n            \"StartTime\": null,\n            \"EndTime\": null,\n            \"State\": \"Pending\",\n            \"Source\": \"Manual\",\n            \"SourceType\": \"Manual\",\n            \"BatchExecutionKey\": \"abbbb5de-d46a-4b9b-8f73-8a3247be0a0e\",\n            \"Info\": null,\n            \"CreationTime\": \"2018-09-21T13:28:31.1449691Z\",\n            \"StartingScheduleId\": null,\n            \"ReleaseName\": \"Heyyo_playground\",\n            \"Type\": \"Unattended\",\n            \"InputArguments\": \"{\\\"message\\\":\\\"Aloha\\\"}\",\n            \"OutputArguments\": null,\n            \"Id\": 160856\n        }\n    ]\n}"}],"_postman_id":"28a8c0b0-dd80-49f4-ad52-15f01cbd0a29"},{"name":"Jobs - Stop Job","id":"aebd3325-1656-4f3c-ba5d-e8b6f1abb70b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"strategy\": \"2\"\r\n}"},"url":"/odata/Jobs(/:jobId)/UiPath.Server.Configuration.OData.StopJob","description":"<p>Stops a running job.</p>\n<p>The <em>jobId</em> path parameter is retrieved from the <strong>Jobs - Start Job</strong> or <strong>Jobs - Get</strong> calls.\nThe <em>strategy</em> body parameter may have a value of either 1 (meaning Soft Stop) or 2 (meaning Kill).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Jobs(",":jobId)","UiPath.Server.Configuration.OData.StopJob"],"host":[""],"query":[],"variable":[{"id":"d21a1b9a-1df9-4499-847a-f4355b22001f","type":"string","value":"","key":"jobId)"}]}},"response":[{"id":"29ea9157-3fa1-4ad8-9b54-8ceac5469e06","name":"Jobs - Start job with inputs","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{ \"startInfo\":\r\n   { \"ReleaseKey\": \"5b754c63-5d1a-4c37-bb9b-74b69e4934bf\",\r\n     \"Strategy\": \"Specific\",\r\n     \"RobotIds\": [ 1553 ],\r\n     \"NoOfRobots\": 0,\r\n     \"Source\": \"Manual\",\r\n     \"InputArguments\": \"{\\\"message\\\":\\\"Aloha\\\"}\"\r\n   } \r\n}"},"url":"/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"CF-RAY","value":"43b31c105eefbf07-FRA","description":"","type":"text","name":"CF-RAY"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","description":"","type":"text","name":"Cache-Control"},{"key":"Connection","value":"keep-alive","description":"","type":"text","name":"Connection"},{"key":"Content-Length","value":"425","description":"","type":"text","name":"Content-Length"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","description":"","type":"text","name":"Content-Type"},{"key":"Date","value":"Mon, 16 Sep 2018 08:30:56 GMT","description":"","type":"text","name":"Date"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","description":"","type":"text","name":"Expect-CT"},{"key":"OData-Version","value":"4.0","description":"","type":"text","name":"OData-Version"},{"key":"Server","value":"cloudflare","description":"","type":"text","name":"Server"},{"key":"Set-Cookie","value":"; SameSite=lax","description":"","type":"text","name":"Set-Cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","description":"","type":"text","name":"Strict-Transport-Security"},{"key":"X-Content-Type-Options","value":"nosniff","description":"","type":"text","name":"X-Content-Type-Options"},{"key":"X-Frame-Options","value":"DENY","description":"","type":"text","name":"X-Frame-Options"},{"key":"api-supported-versions","value":"5.0","description":"","type":"text","name":"api-supported-versions"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://beta.uipath.com/odata/$metadata#Jobs\",\n    \"value\": [\n        {\n            \"Key\": \"b618cdfd-8714-4dbf-9a00-0586a8953c90\",\n            \"StartTime\": null,\n            \"EndTime\": null,\n            \"State\": \"Pending\",\n            \"Source\": \"Manual\",\n            \"SourceType\": \"Manual\",\n            \"BatchExecutionKey\": \"abbbb5de-d46a-4b9b-8f73-8a3247be0a0e\",\n            \"Info\": null,\n            \"CreationTime\": \"2018-09-21T13:28:31.1449691Z\",\n            \"StartingScheduleId\": null,\n            \"ReleaseName\": \"Heyyo_playground\",\n            \"Type\": \"Unattended\",\n            \"InputArguments\": \"{\\\"message\\\":\\\"Aloha\\\"}\",\n            \"OutputArguments\": null,\n            \"Id\": 160856\n        }\n    ]\n}"}],"_postman_id":"aebd3325-1656-4f3c-ba5d-e8b6f1abb70b"},{"name":"License - Upload file","event":[{"listen":"test","script":{"id":"71446bb5-24ec-40f2-af57-ac720137a52e","exec":[""],"type":"text/javascript"}}],"id":"5e30a2c1-af0c-47fc-a38d-e9f8d2bcd51c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","value":null}]},"url":"/odata/Settings/UiPath.Server.Configuration.OData.UploadLicense","description":"<p>A method for manually retrieving an authentication token using the login credentials supplied in the Body. This token is then made available to all other calls.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Settings","UiPath.Server.Configuration.OData.UploadLicense"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"5e30a2c1-af0c-47fc-a38d-e9f8d2bcd51c"},{"name":"Logs - Create","event":[{"listen":"prerequest","script":{"id":"26835258-5a47-416a-a45f-def63d4e85b0","exec":["pm.environment.set(\"currDate\", new Date().toISOString());"],"type":"text/javascript"}}],"id":"de030ad4-e90e-494b-80a8-cd38a272a65e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"[\"{\\\"message\\\":\\\"Postman Log\\\",\\\"level\\\":\\\"Information\\\",\\\"logType\\\":\\\"Default\\\",\\\"timeStamp\\\":\\\"{{currDate}}\\\",\\\"machineName\\\":\\\"DEANSLAPTOP\\\",\\\"robotName\\\":\\\"joe\\\"}\"]"},"url":"/api/Logs/SubmitLogs","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["api","Logs","SubmitLogs"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"1ec8e1f2-1765-4d7f-b4a3-52347e48c364","name":"Logs - Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\"{\\\"message\\\":\\\"Postman Log\\\",\\\"level\\\":\\\"Information\\\",\\\"logType\\\":\\\"Default\\\",\\\"timeStamp\\\":\\\"{{currDate}}\\\",\\\"machineName\\\":\\\"DEANSLAPTOP\\\",\\\"robotName\\\":\\\"joe\\\"}\"]"},"url":"/api/Logs/SubmitLogs"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"CF-RAY","value":"443018de7ee991fa-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"0","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Date","value":"Tue, 31 Jul 2018 12:34:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":""}],"_postman_id":"de030ad4-e90e-494b-80a8-cd38a272a65e"},{"name":"Machines - Get All","id":"c306f6bc-f391-4a7c-aa0a-12028929c27b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Machines","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Machines"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"d29f7b53-9292-40f2-85f4-74f54166b63c","name":"Machines - Get All","originalRequest":{"method":"GET","header":[],"url":"/odata/Machines"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Dec 2018 20:49:05 GMT"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Length","value":"347"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Set-Cookie","value":"; SameSite=lax"},{"key":"api-supported-versions","value":"7.0"},{"key":"OData-Version","value":"4.0"},{"key":"Request-Context","value":"appId=cid-v1:d00ce63d-0891-41e4-a17c-25b2c5382e49"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"487293786b66c5f2-EWR"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Machines\",\n    \"@odata.count\": 2,\n    \"value\": [\n        {\n            \"LicenseKey\": null,\n            \"Name\": \"FAKEMACHINE\",\n            \"Type\": \"Standard\",\n            \"NonProductionSlots\": 0,\n            \"UnattendedSlots\": 0,\n            \"Id\": 20979,\n            \"RobotVersions\": [\n                {\n                    \"Count\": 1,\n                    \"Version\": null\n                }\n            ]\n        },\n        {\n            \"LicenseKey\": null,\n            \"Name\": \"AnotherFakeOne\",\n            \"Type\": \"Standard\",\n            \"NonProductionSlots\": 0,\n            \"UnattendedSlots\": 0,\n            \"Id\": 20967,\n            \"RobotVersions\": [\n                {\n                    \"Count\": 1,\n                    \"Version\": null\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"c306f6bc-f391-4a7c-aa0a-12028929c27b"},{"name":"Machines - Create","id":"9dd88fdd-92aa-46a4-b67f-7d899ca3c2df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"Name\": \"SomeMachine\",\r\n  \"Type\": \"Standard\"\r\n}"},"url":"/odata/Machines","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Machines"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"2acee2fa-3919-4769-a435-0d84412e7c7c","name":"Machines - Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"Name\": \"SomeMachine\",\r\n  \"Type\": \"Standard\"\r\n}"},"url":"/odata/Machines"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Jan 2019 13:47:03 GMT"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Length","value":"245"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Location","value":"https://platform.uipath.com/odata/Machines(84414)"},{"key":"Set-Cookie","value":"; SameSite=lax"},{"key":"api-supported-versions","value":"7.0"},{"key":"OData-Version","value":"4.0"},{"key":"Request-Context","value":"appId=cid-v1:d00ce63d-0891-41e4-a17c-25b2c5382e49"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4a0c25f50cb92468-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Machines/$entity\",\n    \"LicenseKey\": \"765asd90-1c32-1b54-b6ed-d8f73jdk8\",\n    \"Name\": \"SomeMachine\",\n    \"Type\": \"Standard\",\n    \"NonProductionSlots\": 0,\n    \"UnattendedSlots\": 0,\n    \"Id\": 84312,\n    \"RobotVersions\": []\n}"}],"_postman_id":"9dd88fdd-92aa-46a4-b67f-7d899ca3c2df"},{"name":"Machine/License Mappings - Get all","id":"fa50fdcf-8d10-4f93-ac88-31cc4e4e8292","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Robots/UiPath.Server.Configuration.OData.GetMachineNameToLicenseKeyMappings()","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Robots","UiPath.Server.Configuration.OData.GetMachineNameToLicenseKeyMappings()"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"6723a0c9-70d2-40ad-abab-c86c8682edbf","name":"Machine/License Mappings - Get all","originalRequest":{"method":"GET","header":[],"url":"/odata/Robots/UiPath.Server.Configuration.OData.GetMachineNameToLicenseKeyMappings()"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"44301926cc2a91fa-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:34:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#System.Collections.Generic.Dictionary_2OfString_String\",\"Keys\":[\"AnotherFakeOne\",\"FakeMachine\"],\"Values\":[\"7c1e4f31-8824-464e-bff7-e120fdfe4265\",\"696df1de-6d2d-4703-be66-04496f00a030\"]}"}],"_postman_id":"fa50fdcf-8d10-4f93-ac88-31cc4e4e8292"},{"name":"Processes - Get all","id":"20fc8160-ac39-4677-a129-cf6ca225c2a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Processes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Processes"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"c8703697-9967-4804-8f41-610dbc9c516a","name":"Processes - Get all","originalRequest":{"method":"GET","header":[],"url":"/odata/Processes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jan 2019 17:49:33 GMT"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Length","value":"201"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Set-Cookie","value":"; SameSite=lax"},{"key":"api-supported-versions","value":"7.0"},{"key":"OData-Version","value":"4.0"},{"key":"Request-Context","value":"appId=cid-v1:d00ce63d-0891-41e4-a17c-25b2c5382e49"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4a1e03f878a92462-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Processes\",\n    \"@odata.count\": 2,\n    \"value\": [\n        {\n            \"Title\": null,\n            \"Version\": \"1.0.6694.28691\",\n            \"Key\": \"Process1:1.0.6694.28691\",\n            \"Description\": \"Test Process 1\",\n            \"Published\": \"2018-04-30T19:56:28.8615393Z\",\n            \"IsLatestVersion\": true,\n            \"OldVersion\": null,\n            \"IsActive\": false,\n            \"Id\": \"Process1\"\n        },\n        {\n            \"Title\": null,\n            \"Version\": \"1.0.6737.25496\",\n            \"Key\": \"Process2:1.0.6737.25496\",\n            \"Description\": \"Test Process 2\",\n            \"Published\": \"2018-06-12T18:09:55.6098159Z\",\n            \"IsLatestVersion\": true,\n            \"OldVersion\": null,\n            \"IsActive\": false,\n            \"Id\": \"Process2\"\n        }\n    ]\n}"}],"_postman_id":"20fc8160-ac39-4677-a129-cf6ca225c2a5"},{"name":"Process Versions - Get single","id":"d3a70857-d511-47b5-acc2-429975258c93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Processes/UiPath.Server.Configuration.OData.GetProcessVersions(processId='Heyyo')","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Processes","UiPath.Server.Configuration.OData.GetProcessVersions(processId='Heyyo')"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"547d1b81-2e78-4c73-bf16-93ff2616a021","name":"Process Versions - Get single","originalRequest":{"method":"GET","header":[],"url":"/odata/Processes/UiPath.Server.Configuration.OData.GetProcessVersions(processId='Heyyo')"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jan 2019 17:57:18 GMT"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Length","value":"401"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Set-Cookie","value":"; SameSite=lax"},{"key":"api-supported-versions","value":"7.0"},{"key":"OData-Version","value":"4.0"},{"key":"Request-Context","value":"appId=cid-v1:d00ce63d-0891-41e4-a17c-25b2c5382e49"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4a1e0f552fcb2462-IAD"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Processes\",\n    \"@odata.count\": 1,\n    \"value\": [\n        {\n            \"IsActive\": true,\n            \"Title\": null,\n            \"Version\": \"1.0.6705.14383\",\n            \"Key\": \"Heyyo:1.0.6705.14383\",\n            \"Description\": \"Jobs for Orchestrator\",\n            \"Published\": \"2019-01-31T17:54:39.9213054Z\",\n            \"IsLatestVersion\": true,\n            \"OldVersion\": null,\n            \"ReleaseNotes\": null,\n            \"Authors\": \"Dean\",\n            \"Id\": \"Heyyo\",\n            \"Arguments\": {\n                \"Input\": null,\n                \"Output\": null\n            }\n        }\n    ]\n}"}],"_postman_id":"d3a70857-d511-47b5-acc2-429975258c93"},{"name":"Queues - Create","id":"8e7a9491-0006-408e-a346-5677ca295988","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"Name\": \"NewQueue\",\r\n  \"Description\": \"A queue created with the Orchestrator API\",\r\n  \"MaxNumberOfRetries\": 1,\r\n  \"AcceptAutomaticallyRetry\": true,\r\n  \"EnforceUniqueReference\": false\r\n}"},"url":"/odata/QueueDefinitions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","QueueDefinitions"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"f2c786e0-8cd5-4b90-88aa-61f557c3d574","name":"Create New Queue","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"Name\": \"NewQueue\",\r\n  \"Description\": \"A queue created with the Orchestrator API\",\r\n  \"MaxNumberOfRetries\": 1,\r\n  \"AcceptAutomaticallyRetry\": true,\r\n  \"EnforceUniqueReference\": false\r\n}"},"url":"/odata/QueueDefinitions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 01 Dec 2018 10:31:22 GMT"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Length","value":"307"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Location","value":"https://platform.uipath.com/odata/QueueDefinitions(67671)"},{"key":"Set-Cookie","value":"; SameSite=lax"},{"key":"api-supported-versions","value":"7.0"},{"key":"OData-Version","value":"4.0"},{"key":"Request-Context","value":"appId=cid-v1:d00ce63d-0891-41e4-a17c-25b2c5382e49"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4824e23a39c4c297-FRA"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#QueueDefinitions/$entity\",\n    \"Name\": \"NewQueue\",\n    \"Description\": \"A queue created with the Orchestrator API\",\n    \"MaxNumberOfRetries\": 1,\n    \"AcceptAutomaticallyRetry\": true,\n    \"EnforceUniqueReference\": false,\n    \"CreationTime\": \"2018-12-01T10:31:22.176966Z\",\n    \"Id\": 67671\n}"}],"_postman_id":"8e7a9491-0006-408e-a346-5677ca295988"},{"name":"Queues - Get All","id":"ec53ed83-31c6-4238-86d2-0546ee390e35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/QueueDefinitions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","QueueDefinitions"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"461a4539-add6-42c4-bb8f-69d1328b15a5","name":"Queues - Get All","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"/odata/QueueDefinitions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"43b316303d76bf07-FRA","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"353","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 16 Jul 2018 08:26:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#QueueDefinitions\",\n    \"@odata.count\": 1,\n    \"value\": [\n        {\n            \"Name\": \"DMV\",\n            \"Description\": null,\n            \"MaxNumberOfRetries\": 1,\n            \"AcceptAutomaticallyRetry\": true,\n            \"EnforceUniqueReference\": false,\n            \"CreationTime\": \"2018-01-03T16:33:39.443Z\",\n            \"Id\": 4238\n        }\n    ]\n}"}],"_postman_id":"ec53ed83-31c6-4238-86d2-0546ee390e35"},{"name":"Queue Items - Create","id":"ed193618-dba0-4733-9f92-c2b96b314f44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"itemData\": {\n        \"Name\": \"TestQueue\",\n        \"Priority\": \"Normal\",\n        \"SpecificContent\": {\n            \"First\": \"Some String Value Here\",\n    \t\t\"First@odata.type\": \"#String\",\n            \"Second\": 516,\n            \"Fourth\": \"Did I skip the Third value?\",\n            \"AnotherKey\": true\n        }\n    }\n}"},"url":"/odata/Queues/UiPathODataSvc.AddQueueItem","description":"<p>Add an item to a Queue</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Queues","UiPathODataSvc.AddQueueItem"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"cf052a22-a317-4b9f-a43c-8ace86bec9e9","name":"Queue Items - Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"itemData\": {\n        \"Name\": \"TestQueue\",\n        \"Priority\": \"Normal\",\n        \"SpecificContent\": {\n            \"Type\": \"Customer\",\n    \t\t\"Name@odata.type\": \"#String\",\n            \"Name\": \"Some Guy\"\n        }\n    }\n}"},"url":"/odata/Queues/UiPathODataSvc.AddQueueItem"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"44302040491791fa-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"725","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:39:07 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"Location","value":"https://platform.uipath.com/odata/queueItem(3888968)","name":"Location","description":"Used in redirection, or when a new resource has been created."},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#queueItem/$entity\",\"QueueDefinitionId\":33196,\"OutputData\":null,\"Status\":\"New\",\"ReviewStatus\":\"None\",\"ReviewerUserId\":null,\"Key\":\"7aa9a82d-781b-45e5-ba14-d1758825e314\",\"Reference\":null,\"ProcessingExceptionType\":null,\"DueDate\":null,\"Priority\":\"Normal\",\"DeferDate\":null,\"StartProcessing\":null,\"EndProcessing\":null,\"SecondsInPreviousAttempts\":0,\"AncestorId\":null,\"RetryNumber\":0,\"SpecificData\":\"{\\\"DynamicProperties\\\":{\\\"Type\\\":\\\"Customer\\\",\\\"Name\\\":\\\"Some Guy\\\"}}\",\"CreationTime\":\"2018-07-31T12:39:07.6923552Z\",\"Progress\":null,\"RowVersion\":\"AAAAAADu9Mg=\",\"Id\":3888968,\"ProcessingException\":null,\"SpecificContent\":{\"Type\":\"Customer\",\"Name\":\"Some Guy\"},\"Output\":null}"}],"_postman_id":"ed193618-dba0-4733-9f92-c2b96b314f44"},{"name":"Queues Items- Get all by queue id","id":"cb354073-2725-4abc-9806-c5fb900a39de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/QueueItems?$filter=QueueDefinitionId eq 33196","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","QueueItems"],"host":[""],"query":[{"key":"$filter","value":"QueueDefinitionId eq 33196"}],"variable":[]}},"response":[{"id":"5dfd4dbc-244f-48a0-aea0-2eab16f74c48","name":"Queues Items- Get all by queue id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"/odata/QueueItems?$filter=QueueDefinitionId eq 33196","host":[""],"path":["odata","QueueItems"],"query":[{"key":"$filter","value":"QueueDefinitionId eq 33196"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"44302246a9fb91fa-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"609","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:40:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#QueueItems\",\"@odata.count\":1,\"value\":[{\"QueueDefinitionId\":33196,\"OutputData\":null,\"Status\":\"New\",\"ReviewStatus\":\"None\",\"ReviewerUserId\":null,\"Key\":\"7aa9a82d-781b-45e5-ba14-d1758825e314\",\"Reference\":null,\"ProcessingExceptionType\":null,\"DueDate\":null,\"Priority\":\"Normal\",\"DeferDate\":null,\"StartProcessing\":null,\"EndProcessing\":null,\"SecondsInPreviousAttempts\":0,\"AncestorId\":null,\"RetryNumber\":0,\"SpecificData\":\"{\\\"DynamicProperties\\\":{\\\"Type\\\":\\\"Customer\\\",\\\"Name\\\":\\\"Some Guy\\\"}}\",\"CreationTime\":\"2018-07-31T12:39:07.693Z\",\"Progress\":null,\"RowVersion\":\"AAAAAADu9Mg=\",\"Id\":3888968,\"ProcessingException\":null,\"SpecificContent\":{\"Type\":\"Customer\",\"Name\":\"Some Guy\"},\"Output\":null}]}"}],"_postman_id":"cb354073-2725-4abc-9806-c5fb900a39de"},{"name":"Releases - Get all","event":[{"listen":"test","script":{"id":"c8ab4bbb-371d-46ce-b328-e6b67c279230","exec":[""],"type":"text/javascript"}}],"id":"64904c14-0ec1-4a2f-95a5-bfb54e46bf29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Releases","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Releases"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"aa5684e1-4963-4b49-84e2-35f74acdad72","name":"Releases - Get all","originalRequest":{"method":"GET","header":[],"url":"/odata/Releases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"44302d615ada91d0-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"381","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:48:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#Releases\",\"@odata.count\":1,\"value\":[{\"Key\":\"c09b9b2a-d23c-4506-8fd2-12b0895d4031\",\"ProcessKey\":\"Heyyo\",\"ProcessVersion\":\"1.0.6786.15718\",\"IsLatestVersion\":false,\"IsProcessDeleted\":false,\"Description\":\"Test process for Postman\",\"Name\":\"Heyyo_playground\",\"EnvironmentId\":23282,\"EnvironmentName\":\"playground\",\"Id\":31931}]}"}],"_postman_id":"64904c14-0ec1-4a2f-95a5-bfb54e46bf29"},{"name":"Releases - Get by name","event":[{"listen":"test","script":{"id":"c8ab4bbb-371d-46ce-b328-e6b67c279230","exec":[""],"type":"text/javascript"}}],"id":"32c4ccec-f7d9-445a-b295-eb929ee152bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Releases?$filter=ProcessKey eq 'Heyyo'","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Releases"],"host":[""],"query":[{"key":"$filter","value":"ProcessKey eq 'Heyyo'"}],"variable":[]}},"response":[{"id":"da65f60e-7b81-4ab3-b417-09643d3bf9bb","name":"Releases - Get by name","originalRequest":{"method":"GET","header":[],"url":{"raw":"/odata/Releases?$filter=ProcessKey eq 'Hello'","host":[""],"path":["odata","Releases"],"query":[{"key":"$filter","value":"ProcessKey eq 'Hello'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"44302d9c2b8e91d0-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"381","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:48:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/odata/$metadata#Releases\",\n    \"@odata.count\": 1,\n    \"value\": [\n        {\n            \"Key\": \"012345a-678-89b9-b738-4574466f4886\",\n            \"ProcessKey\": \"Hello\",\n            \"ProcessVersion\": \"1.0.6913.24377\",\n            \"IsLatestVersion\": false,\n            \"IsProcessDeleted\": false,\n            \"Description\": null,\n            \"Name\": \"Hello_playground\",\n            \"EnvironmentId\": 3210,\n            \"EnvironmentName\": \"playground\",\n            \"InputArguments\": \"{}\",\n            \"QueueDefinitionId\": null,\n            \"QueueDefinitionName\": null,\n            \"Id\": 12345,\n            \"Arguments\": {\n                \"Input\": \"[{\\\"name\\\":\\\"greeting\\\",\\\"type\\\":\\\"System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\\\",\\\"required\\\":false,\\\"hasDefault\\\":false},{\\\"name\\\":\\\"url\\\",\\\"type\\\":\\\"System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\\\",\\\"required\\\":false,\\\"hasDefault\\\":false},{\\\"name\\\":\\\"username\\\",\\\"type\\\":\\\"System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\\\",\\\"required\\\":false,\\\"hasDefault\\\":true},{\\\"name\\\":\\\"password\\\",\\\"type\\\":\\\"System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\\\",\\\"required\\\":false,\\\"hasDefault\\\":true}]\",\n                \"Output\": \"[{\\\"name\\\":\\\"greeting\\\",\\\"type\\\":\\\"System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\\\",\\\"required\\\":false,\\\"hasDefault\\\":false}]\"\n            },\n            \"ProcessSettings\": null\n        }\n    ]\n}"}],"_postman_id":"32c4ccec-f7d9-445a-b295-eb929ee152bf"},{"name":"Roles - Get all","id":"d3c81c39-f9d3-42b3-a5b8-ab9ec12323bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Roles","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Roles"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"f5181167-192a-45ff-9004-a5db3bba72c9","name":"Roles - Get all","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"/odata/Roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"44302dcf9f2d91d0-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"297","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:48:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#Roles\",\"@odata.count\":2,\"value\":[{\"Name\":\"Robot\",\"DisplayName\":\"Robot\",\"Groups\":null,\"IsStatic\":true,\"IsEditable\":true,\"Id\":47624},{\"Name\":\"Administrator\",\"DisplayName\":\"Administrator\",\"Groups\":null,\"IsStatic\":true,\"IsEditable\":false,\"Id\":47625}]}"}],"_postman_id":"d3c81c39-f9d3-42b3-a5b8-ab9ec12323bc"},{"name":"Robots - Create","id":"72370cda-820a-4c9b-871e-dbf15c724294","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"LicenseKey\": \"123abc\",\n    \"MachineName\": \"FAKEMACHINE\",\n    \"Name\": \"joe\",\n    \"Username\": \"someone\",\n    \"Type\": \"Development\",\n    \"Password\": null,\n    \"RobotEnvironments\": \"playground\",\n    \"ExecutionSettings\": null\n}"},"url":"/odata/Robots","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Robots"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"6e83c7aa-31e8-4303-b80a-9f04ffb1bf9d","name":"Robots - Create","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"LicenseKey\": \"123abc\",\n    \"MachineName\": \"FAKEMACHINE\",\n    \"Name\": \"joe\",\n    \"Username\": \"someone\",\n    \"Type\": \"Development\",\n    \"Password\": null,\n    \"RobotEnvironments\": \"playground\",\n    \"ExecutionSettings\": null\n}"},"url":"/odata/Robots"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"44302f694aea91d0-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"296","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:49:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"Location","value":"https://platform.uipath.com/odata/Robots(33428)","name":"Location","description":"Used in redirection, or when a new resource has been created."},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#Robots/$entity\",\"LicenseKey\":\"123abc\",\"MachineName\":\"FAKEMACHINE\",\"MachineId\":20977,\"Name\":\"joe\",\"Username\":\"someone\",\"Description\":null,\"Type\":\"Development\",\"Password\":null,\"RobotEnvironments\":\"\",\"Id\":33428,\"ExecutionSettings\":null}"}],"_postman_id":"72370cda-820a-4c9b-871e-dbf15c724294"},{"name":"Robots - Get all","id":"2b692003-53c3-428f-b112-7b6d5db01d03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"Default","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"1","type":"text"}],"url":"https://roqaw2k16app11.deskover.local/odata/Robots","urlObject":{"protocol":"https","path":["odata","Robots"],"host":["roqaw2k16app11","deskover","local"],"query":[],"variable":[]}},"response":[{"id":"e9a7be7c-3960-4506-9010-b8d93a5a3b37","name":"Robots - Get all","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"/odata/Robots"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"44303001bbcb91d0-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"425","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:49:53 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#Robots\",\"@odata.count\":2,\"value\":[{\"LicenseKey\":null,\"MachineName\":\"AnotherFakeOne\",\"MachineId\":20967,\"Name\":\"Cassius\",\"Username\":\"cassius\",\"Description\":\"A dev bot for testing\",\"Type\":\"Development\",\"Password\":null,\"RobotEnvironments\":\"playground\",\"Id\":33420,\"ExecutionSettings\":null},{\"LicenseKey\":null,\"MachineName\":\"FAKEMACHINE\",\"MachineId\":20977,\"Name\":\"joe\",\"Username\":\"someone\",\"Description\":null,\"Type\":\"Development\",\"Password\":null,\"RobotEnvironments\":\"\",\"Id\":33428,\"ExecutionSettings\":null}]}"}],"_postman_id":"2b692003-53c3-428f-b112-7b6d5db01d03"},{"name":"Robots - Get by ID","id":"90c4d224-72b0-451a-958c-3ad929b4598b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Robots(33420)","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Robots(33420)"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"9a46c7d9-b1f1-426d-8df8-94e5d5712240","name":"Robots - Get by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"/odata/Robots(33420)"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"443030b69f2c91d0-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"403","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:50:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#Robots/$entity\",\"LicenseKey\":\"7c1e4f31-8824-464e-bff7-e120fdfe4265\",\"MachineName\":\"AnotherFakeOne\",\"MachineId\":20967,\"Name\":\"Cassius\",\"Username\":\"cassius\",\"Description\":\"A dev bot for testing\",\"Type\":\"Development\",\"Password\":\"\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\\u2022\",\"RobotEnvironments\":\"playground\",\"Id\":33420,\"ExecutionSettings\":{}}"}],"_postman_id":"90c4d224-72b0-451a-958c-3ad929b4598b"},{"name":"Robots - Get by name","id":"0559c691-9817-4db5-bb0a-cd345d8121b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Robots?$top=1&$filter=Name eq 'Cassius'","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Robots"],"host":[""],"query":[{"key":"$top","value":"1"},{"key":"$filter","value":"Name eq 'Cassius'"}],"variable":[]}},"response":[{"id":"cace83e2-e11d-44c0-a021-c7feb5da0ca6","name":"Robots - Get by name","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"/odata/Robots?$top=1&$filter=Name eq 'Cassius'","host":[""],"path":["odata","Robots"],"query":[{"key":"$top","value":"1"},{"key":"$filter","value":"Name eq 'Cassius'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"4430319529c091d0-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"373","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:50:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#Robots\",\"@odata.count\":1,\"value\":[{\"LicenseKey\":null,\"MachineName\":\"AnotherFakeOne\",\"MachineId\":20967,\"Name\":\"Cassius\",\"Username\":\"cassius\",\"Description\":\"A dev bot for testing\",\"Type\":\"Development\",\"Password\":null,\"RobotEnvironments\":\"playground\",\"Id\":33420,\"ExecutionSettings\":null}]}"}],"_postman_id":"0559c691-9817-4db5-bb0a-cd345d8121b1"},{"name":"Robots - Edit","id":"e5e8f426-d4ee-4594-b545-679786d5d473","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"LicenseKey\": \"123abc\",\r\n  \"MachineName\": \"FAKEMACHINE\",\r\n  \"Name\": \"joe\",\r\n  \"Type\": \"Development\",\r\n  \"Id\": 33428,\r\n  \"Username\": \"joe\"\r\n}"},"url":"/odata/Robots(33428)","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Robots(33428)"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"8baadf24-93d7-4aa0-8909-52148d787a93","name":"Robots - Edit","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"LicenseKey\": \"123abc\",\r\n  \"MachineName\": \"FAKEMACHINE\",\r\n  \"Name\": \"joe\",\r\n  \"Type\": \"Development\",\r\n  \"Id\": 33428,\r\n  \"Username\": \"joe\"\r\n}"},"url":"/odata/Robots(33428)"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"CF-RAY","value":"44303349891391d0-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"0","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Date","value":"Tue, 31 Jul 2018 12:52:08 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":""}],"_postman_id":"e5e8f426-d4ee-4594-b545-679786d5d473"},{"name":"Robot Service - Get Robot Mappings","id":"5b0d61f3-f548-455d-a2bd-72697597dae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/api/RobotsService/GetRobotMappings?licenseKey=86753095683&machineName=TESTLAPTOP","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["api","RobotsService","GetRobotMappings"],"host":[""],"query":[{"key":"licenseKey","value":"86753095683"},{"key":"machineName","value":"TESTLAPTOP"}],"variable":[]}},"response":[{"id":"47acece1-6667-416d-95b6-bca3e7243b90","name":"Robot Service - Get Robot Service Mappings","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"/api/RobotsService/GetRobotMappings?licenseKey=86753095683&machineName=TESTLAPTOP","host":[""],"path":["api","RobotsService","GetRobotMappings"],"query":[{"key":"licenseKey","value":"86753095683"},{"key":"machineName","value":"TESTLAPTOP"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Jan 2019 23:05:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"122"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Set-Cookie","value":"; SameSite=lax"},{"key":"api-supported-versions","value":"7.0"},{"key":"Request-Context","value":"appId=cid-v1:d00ce63d-0891-41e4-a17c-25b2c5382e49"},{"key":"Access-Control-Expose-Headers","value":"Request-Context"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"4a071ad5fc4a247a-IAD"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"robotKey\": \"1234567-abcd-890p-a67b-6d5b987dj\",\n        \"user\": \"dean\",\n        \"machineName\": \"TESTLAPTOP\",\n        \"machineId\": 20000,\n        \"robotName\": \"joe\",\n        \"robotType\": 3,\n        \"hasLicense\": false,\n        \"tenantId\": 1234,\n        \"organizationUnitId\": 5678,\n        \"executionSettings\": null,\n        \"id\": 33445\n    }\n]"}],"_postman_id":"5b0d61f3-f548-455d-a2bd-72697597dae3"},{"name":"Sessions - Get all","id":"a5669a69-45f0-43ca-a8a5-dccf855f9480","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/odata/Sessions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Sessions"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"d706869f-bb02-45a6-803a-56bb6334be4c","name":"Sessions - Get all","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"/odata/Sessions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"CF-RAY","value":"44303574bc3091d0-EWR","name":"CF-RAY","description":"Custom header"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"326","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 31 Jul 2018 12:53:36 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"","name":"Expect-CT","description":"Custom header"},{"key":"OData-Version","value":"4.0","name":"OData-Version","description":"Custom header"},{"key":"Server","value":"cloudflare","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"; SameSite=lax","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"api-supported-versions","value":"5.0","name":"api-supported-versions","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"uipath.com","path":"/","secure":true,"value":"d3b89a558feb68050f4b847c971f595771513704902","key":"__cfduid"},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/QueueProcessingRecords","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/RobotsService","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Processes","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Settings","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Robots","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Queues","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Assets","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Users","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata/Jobs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api/Logs","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/Account","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/odata","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/api","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":""},{"expires":"Invalid Date","httpOnly":false,"domain":"platform.uipath.com","path":"/","secure":false,"value":"GC-osp2U-YDhoXTOqXnUp3DaN1cN_siVCaNVue_jljOcqJLYHQrRk5msz52KHL8XauydRYx_3JyjLtLDpItypCPdEL20jFnxlF2g-f86Qk41","key":"__RequestVerificationToken"}],"responseTime":null,"body":"{\"@odata.context\":\"https://platform.uipath.com/odata/$metadata#Sessions\",\"@odata.count\":2,\"value\":[{\"State\":\"Disconnected\",\"ReportingTime\":\"2018-07-31T12:28:27.78Z\",\"Info\":null,\"IsUnresponsive\":false,\"Id\":33402},{\"State\":\"Available\",\"ReportingTime\":\"2018-07-31T12:53:30.463Z\",\"Info\":null,\"IsUnresponsive\":false,\"Id\":33410}]}"}],"_postman_id":"a5669a69-45f0-43ca-a8a5-dccf855f9480"},{"name":"Settings - Get all","id":"67eed1a7-724b-436c-be7b-489fe68651bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-UIPATH-TenantName","type":"text","value":"{{tenantName}}"},{"key":"X-UIPATH-OrganizationUnitId","type":"text","value":"{{folderId}}"}],"url":"/odata/Settings","description":"<p>A template for future calls. You can ignore this one.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":["odata","Settings"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"fbc12a3d-9698-4bf2-ac3d-5176b7a13f97","name":"Settings - Get all","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"X-UIPATH-TenantName","type":"text","value":"{{tenantName}}"},{"key":"X-UIPATH-OrganizationUnitId","type":"text","value":"{{folderId}}"}],"url":"/odata/Settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Jan 2020 13:58:47 GMT"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-store, must-revalidate, no-cache, max-age=0"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"api-supported-versions","value":"9.0"},{"key":"OData-Version","value":"4.0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"5589cdca2ba5ccc6-EWR"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://platform.uipath.com/AccountName/TenantName/odata/$metadata#Settings\",\n    \"@odata.count\": 37,\n    \"value\": [\n        {\n            \"Name\": \"Abp.Localization.DefaultLanguageName\",\n            \"Value\": \"en\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Localization.DefaultLanguageName\"\n        },\n        {\n            \"Name\": \"Abp.Net.Mail.Smtp.Host\",\n            \"Value\": \"smtp.sendgrid.net\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Net.Mail.Smtp.Host\"\n        },\n        {\n            \"Name\": \"Abp.Net.Mail.Smtp.Port\",\n            \"Value\": \"587\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Net.Mail.Smtp.Port\"\n        },\n        {\n            \"Name\": \"Abp.Net.Mail.Smtp.UserName\",\n            \"Value\": \"apikey\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Net.Mail.Smtp.UserName\"\n        },\n        {\n            \"Name\": \"Abp.Net.Mail.Smtp.Password\",\n            \"Value\": \"••••••••••••\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Net.Mail.Smtp.Password\"\n        },\n        {\n            \"Name\": \"Abp.Net.Mail.Smtp.Domain\",\n            \"Value\": \"\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Net.Mail.Smtp.Domain\"\n        },\n        {\n            \"Name\": \"Abp.Net.Mail.Smtp.EnableSsl\",\n            \"Value\": \"true\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Net.Mail.Smtp.EnableSsl\"\n        },\n        {\n            \"Name\": \"Abp.Net.Mail.Smtp.UseDefaultCredentials\",\n            \"Value\": \"false\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Net.Mail.Smtp.UseDefaultCredentials\"\n        },\n        {\n            \"Name\": \"Abp.Net.Mail.DefaultFromAddress\",\n            \"Value\": \"noreply-platform@uipath.com\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Net.Mail.DefaultFromAddress\"\n        },\n        {\n            \"Name\": \"Abp.Net.Mail.DefaultFromDisplayName\",\n            \"Value\": \"UiPath Platform\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Net.Mail.DefaultFromDisplayName\"\n        },\n        {\n            \"Name\": \"Abp.Timing.TimeZone\",\n            \"Value\": \"UTC\",\n            \"Scope\": null,\n            \"Id\": \"Abp.Timing.TimeZone\"\n        },\n        {\n            \"Name\": \"InternalDeployment\",\n            \"Value\": \"true\",\n            \"Scope\": null,\n            \"Id\": \"InternalDeployment\"\n        },\n        {\n            \"Name\": \"DeploymentUrl\",\n            \"Value\": \"\",\n            \"Scope\": null,\n            \"Id\": \"DeploymentUrl\"\n        },\n        {\n            \"Name\": \"NuGet.Packages.ApiKey\",\n            \"Value\": \"eb6h29310-5ie0-4724-a54f-v8f4js9km3\",\n            \"Scope\": null,\n            \"Id\": \"NuGet.Packages.ApiKey\"\n        },\n        {\n            \"Name\": \"Deployment.Processes.AuthenticationType\",\n            \"Value\": \"ApiKey\",\n            \"Scope\": null,\n            \"Id\": \"Deployment.Processes.AuthenticationType\"\n        },\n        {\n            \"Name\": \"DeploymentBasicUsername\",\n            \"Value\": \"\",\n            \"Scope\": null,\n            \"Id\": \"DeploymentBasicUsername\"\n        },\n        {\n            \"Name\": \"DeploymentBasicPassword\",\n            \"Value\": \"\",\n            \"Scope\": null,\n            \"Id\": \"DeploymentBasicPassword\"\n        },\n        {\n            \"Name\": \"Deployment.Libraries.Url\",\n            \"Value\": \"\",\n            \"Scope\": null,\n            \"Id\": \"Deployment.Libraries.Url\"\n        },\n        {\n            \"Name\": \"Deployment.Libraries.Internal\",\n            \"Value\": \"true\",\n            \"Scope\": null,\n            \"Id\": \"Deployment.Libraries.Internal\"\n        },\n        {\n            \"Name\": \"Deployment.Libraries.AuthenticationType\",\n            \"Value\": \"apiKey\",\n            \"Scope\": null,\n            \"Id\": \"Deployment.Libraries.AuthenticationType\"\n        },\n        {\n            \"Name\": \"NuGet.Activities.ApiKey\",\n            \"Value\": \"019d78dh-89d0-42f7-8b50-88f6eh3k87\",\n            \"Scope\": null,\n            \"Id\": \"NuGet.Activities.ApiKey\"\n        },\n        {\n            \"Name\": \"Deployment.Libraries.UseSharedFeed\",\n            \"Value\": \"true\",\n            \"Scope\": null,\n            \"Id\": \"Deployment.Libraries.UseSharedFeed\"\n        },\n        {\n            \"Name\": \"Deployment.Libraries.BasicUsername\",\n            \"Value\": \"\",\n            \"Scope\": null,\n            \"Id\": \"Deployment.Libraries.BasicUsername\"\n        },\n        {\n            \"Name\": \"Deployment.Libraries.BasicPassword\",\n            \"Value\": \"\",\n            \"Scope\": null,\n            \"Id\": \"Deployment.Libraries.BasicPassword\"\n        },\n        {\n            \"Name\": \"PasswordComplexity\",\n            \"Value\": \"{\\\"HasDigit\\\":true,\\\"HasLowercase\\\":true,\\\"HasSpecialCharacter\\\":false,\\\"HasUppercase\\\":false,\\\"Length\\\":6,\\\"RegexComplexity\\\":{\\\"HasDigitRegex\\\":\\\"(?=.*\\\\\\\\d)\\\",\\\"HasLowercaseRegex\\\":\\\"(?=.*[a-z])\\\",\\\"HasSpecialCharacterRegex\\\":\\\"(?=.*[^a-zA-Z\\\\\\\\d])\\\",\\\"HasUppercaseRegex\\\":\\\"(?=.*[A-Z])\\\",\\\"LengthRegex\\\":\\\"{6,}\\\",\\\"Regex\\\":\\\"(?=.*\\\\\\\\d)(?=.*[a-z]).{6,}\\\"}}\",\n            \"Scope\": null,\n            \"Id\": \"PasswordComplexity\"\n        },\n        {\n            \"Name\": \"Alerts.Email.Enabled\",\n            \"Value\": \"true\",\n            \"Scope\": null,\n            \"Id\": \"Alerts.Email.Enabled\"\n        },\n        {\n            \"Name\": \"Auth.UserLockOut.IsEnabled\",\n            \"Value\": \"true\",\n            \"Scope\": null,\n            \"Id\": \"Auth.UserLockOut.IsEnabled\"\n        },\n        {\n            \"Name\": \"Auth.UserLockOut.MaxFailedAccessAttemptsBeforeLockout\",\n            \"Value\": \"10\",\n            \"Scope\": null,\n            \"Id\": \"Auth.UserLockOut.MaxFailedAccessAttemptsBeforeLockout\"\n        },\n        {\n            \"Name\": \"Auth.UserLockOut.DefaultAccountLockoutSeconds\",\n            \"Value\": \"300\",\n            \"Scope\": null,\n            \"Id\": \"Auth.UserLockOut.DefaultAccountLockoutSeconds\"\n        },\n        {\n            \"Name\": \"Auth.Password.DefaultExpirationDays\",\n            \"Value\": \"0\",\n            \"Scope\": null,\n            \"Id\": \"Auth.Password.DefaultExpirationDays\"\n        },\n        {\n            \"Name\": \"Auth.Password.PreviousUseLimit\",\n            \"Value\": \"1\",\n            \"Scope\": null,\n            \"Id\": \"Auth.Password.PreviousUseLimit\"\n        },\n        {\n            \"Name\": \"Auth.Password.ShouldChangePasswordAfterFirstLogin\",\n            \"Value\": \"true\",\n            \"Scope\": null,\n            \"Id\": \"Auth.Password.ShouldChangePasswordAfterFirstLogin\"\n        },\n        {\n            \"Name\": \"GlobalExecutionSettings\",\n            \"Value\": \"{}\",\n            \"Scope\": null,\n            \"Id\": \"GlobalExecutionSettings\"\n        },\n        {\n            \"Name\": \"AttendedRobot.RunDisconnectedHours\",\n            \"Value\": \"0\",\n            \"Scope\": null,\n            \"Id\": \"AttendedRobot.RunDisconnectedHours\"\n        },\n        {\n            \"Name\": \"Scalability.SignalR.Enabled\",\n            \"Value\": \"true\",\n            \"Scope\": null,\n            \"Id\": \"Scalability.SignalR.Enabled\"\n        },\n        {\n            \"Name\": \"Scalability.SignalR.Transport\",\n            \"Value\": \"7\",\n            \"Scope\": null,\n            \"Id\": \"Scalability.SignalR.Transport\"\n        },\n        {\n            \"Name\": \"Features.ModernFolders.Enabled\",\n            \"Value\": \"true\",\n            \"Scope\": null,\n            \"Id\": \"Features.ModernFolders.Enabled\"\n        }\n    ]\n}"}],"_postman_id":"67eed1a7-724b-436c-be7b-489fe68651bc"},{"name":"TEMPLATE","id":"6f4f3bd1-57fd-418f-a0fb-e4db5b523bd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-UIPATH-TenantName","value":"{{tenantName}}","type":"text"},{"key":"X-UIPATH-OrganizationUnitId","value":"{{folderId}}","type":"text"}],"url":"/","description":"<p>A template for future calls. You can ignore this one.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"path":[""],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"6f4f3bd1-57fd-418f-a0fb-e4db5b523bd3"},{"name":"TestReq","id":"c3ce70d3-71b0-4f23-8bb9-bce7d8beafb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-XSRF-TOKEN","value":"CfDJ8AslBYtuyLBIkwagsUwKeZyi7iUYOoBjsKob-_KZdizM9VAMyFEmPO6CZ4SwTSLEjDaNxyJrHN3UjSllKR_B_ID4A6qfKUTs_vgv9HQA55NVvW2vB58VGfUB8RfHtD0JOy1Jhv27HWShovYLOMhCNh4","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"Tenant\": \"Default\",\r\n\"UsernameOrEmail\": \"admin\",\r\n\"Password\": \"1qazXSW@\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://roqaw2k16app11.deskover.local/identity/api/Account/Login","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"09d9f34a-c597-4699-b9a5-3d0c58070756","id":"09d9f34a-c597-4699-b9a5-3d0c58070756","name":"Orchestrator","type":"collection"}},"urlObject":{"protocol":"https","path":["identity","api","Account","Login"],"host":["roqaw2k16app11","deskover","local"],"query":[],"variable":[]}},"response":[],"_postman_id":"c3ce70d3-71b0-4f23-8bb9-bce7d8beafb8"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"ee682cf2-3679-4a6b-8e49-b4feef71fd91","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"aee24f26-ce2d-4a73-9082-14c5b237c380","type":"text/javascript","exec":[""]}}],"variable":[{"key":"token","value":""},{"key":"url","value":""}]}