Hello Folks,
I am trying to invoke the Orchestrator API to send a simple queue message to them.
And when I perform it, I am getting the HTTP Status Code (200) and apparently it is okay. But that event message is not arriving.
I am using Postman to Authenticate (https://orchestrator/api/account/authenticate) and AddQueueItem (https://orchestrator/odata/Queues/UIPathODataSvc.AddQueueItem), below is my payload sample:
Content-Type:application/json
Authorization:Bearer [result of authentication]
X-UIPATH-TenantName: Default
X-UIPATH-OrganizationUnitId: Default
{
“itemData”: {
“Name”: “TestQueue”,
“Priority”: “High”,
“SpecificContent”: {
“First”: “Some String Value Here”,
“First@odata.type”: “#String”,
“Second”: 516,
“Fourth”: “Did I skip the Third value?”,
“AnotherKey”: true
}
}
}
The result in post man body’s tab is:
<base href="/" />
<title>UiPath Orchestrator </title>
<link rel="shortcut icon" href="favicon.ico" />
<link rel='stylesheet' type='text/css' href='/dist/assets/preloader.css?v=2019.4.4.0' />
<link rel='stylesheet' type='text/css' href='/dist/css/noto/noto-font-jp-zh-woff.css?v=2019.4.4.0' />
<link rel='stylesheet' type='text/css' href='/dist/css/noto/noto-font-jp-zh.css?v=2019.4.4.0' />
<link rel='stylesheet' type='text/css' href='/dist/css/material-design-icons/material-icons.css?v=2019.4.4.0' />
<link rel='stylesheet' type='text/css' href='/dist/styles.css?v=2019.4.4.0' />
<link rel='stylesheet' type='text/css' href='/dist/default.theme.css?v=2019.4.4.0' />
<script src='/dist/js/mixpanel-init.js?v=2019.4.4.0' type='text/javascript'></script>
<script src='/dist/assets/js/preload.js?v=2019.4.4.0' type='text/javascript'></script>
<script src='/dist/runtime.js?v=2019.4.4.0' type='text/javascript'></script>
<script src='/dist/scripts.js?v=2019.4.4.0' type='text/javascript'></script>
<script src='/dist/main.js?v=2019.4.4.0' type='text/javascript'></script>
My UiPath version is 2019.4.4
Thanks in advance,