Hello
I have certain data that I have converted to json string stored in “strJson” variable, now in the Orchestrator HTTP request activity I want to pass my varibal in the JSON payload for example:
My current working payload:
“{
‘queueName’: ‘EmpQueue’,
‘commitType’: ‘AllOrNothing’,
‘queueItems’: [
{
‘Name’: ‘EmpQueue’,
‘Priority’: ‘High’,
‘SpecificContent’: {
‘specificContent1’ : ‘my First content’,
‘specificContent2’ : ‘my Secondcontent’,
},
‘DeferDate’: ‘2024-05-13T04:28:18.100Z’,
‘DueDate’: ‘2024-05-13T04:28:18.100Z’,
‘RiskSlaDate’: ‘2024-05-13T04:28:18.100Z’,
‘Reference’: ‘Postman_API’,
‘Progress’: ‘string’,
‘Source’: ‘Apps’,
‘ParentOperationId’: ‘string’
}
]
}”
now I want to replace the specific content wwith the variable strJson
I am using the Orchestrator HTTP activity, I need to bulk add my data that I had read from excel and converted it into json format, now I want to place the variable in json payload property of the Orchestrator HTTP request activity along with my body generated by swagger UI in the orchestrator itself
Yes, I first try it with swagger UI integrated into orchestrator, then copy the given URL into Postman API and fill in the relevant fields, after successful hit I try to incorporate it into UiPath Studio, I have successfully completed get, post put and delete on queue Items, but while adding bulk content from an excel (my current task) is not working as expected. due to the involvement of variables