We have seen the queueItemParameters must not be null off late like almost 3 weeks onwards. Same thing was working before.
We are generating token with below
https://account.uipath.com/oauth/token
{
“grant_type”: “refresh_token”,
“client_id”: “8DEv1AMNXczW3y4U15LL3jYf62jK93n5”,
“refresh_token”: “TttXEegUnMp9CsGbiiicacV9SsodlZHketQbIODaDX9ou”
}
Same access token being to add the queue item
https://cloud.uipath.com/idmworksindiait/IDMWORKSIndiaITPvtLtdDefault/odata/Queues/UiPathODataSvc.AddQueueItem
headers -
Content-Type:application/json
X-UiPath-TenantName:IDMWORKSIndiaITPvtLtdDefault
X-UiPath-OrganizationUnitId:632377
Body
{‘itemData’: {‘Name’: ‘Provisioning’, ‘Priority’: ‘Normal’, ‘Reference’: ‘_’, ‘SpecificContent’: {‘applicationName’: ‘NEIS’, ‘applicationName@odata.type’: ‘string’, ‘username’: ‘Eimon.Harper@Aus.com’, ‘username@odata.type’: ‘string’, ‘enabled’: ‘True’, ‘enabled@odata.type’: ‘string’, ‘data’: ‘current:proc’, ‘data@odata.type’: ‘string’, ‘FirstName’: ‘Eimon’, ‘FirstName@odata.type’: ‘string’, ‘LastName’: ‘Harper’, ‘LastName@odata.type’: ‘string’, ‘Email’: ‘Eimon.Harper@Aus.com’, ‘Email@odata.type’: ‘string’, ‘Phonenumber’: ‘8896563412’, ‘Phonenumber@odata.type’: ‘string’, ‘requestType’: ‘createAccount’, ‘requestType@odata.type’: ‘string’, ‘requestuuid’: ‘89f79921-ad70-4bd4-8e55-b93281cccc44’, ‘requestuuid@odata.type’: ‘string’
}
}
}
When we try to send it returns below error message
{
“message”: “queueItemParameters must not be null”,
“errorCode”: 0,
“traceId”: “00-c6efa9a6fbaa1ecd52793d3d5ace124a-a05cf076e486c2c7-00”
}
We have check the documentation but do not see any difference
Can someone help here as I am block and not able to proceed.