Official comment
Hi John,
It's possible to do by using bulk/execute. Example:
{
"requests": [
{
"url": "/data/upsert",
"method": "post",
"body": {
"insertEntity": {
"Id": "/Task/123456",
"Parent": "/Task/42",
"Name": "A new Task",
"StartDate": "2020-12-01",
"Duration": {
"value": 3,
"unit": "Days"
}
},
"updateEntity": {
"Id": "/Task/123456",
"Name": "An updated Task"
}
}
},
etc.,
etc.,
etc.
]
}
Replace etc. with more API calls.
I hope this helps.
Roland
Comment actions