Hello Bvy,
It's possible using Bulk Execute: POST https://api.clarizen.com/V2.0/services/bulk/Execute
Example in Postman:
JSON:
{
"requests": [
{
"url":"data/createAndRetrieve",
"method": "POST",
"body": {
"entity": {
"Id": "/Project",
"Name": "Test Bulk API 1"
}
}
},
{
"url":"data/createAndRetrieve",
"method": "POST",
"body": {
"entity": {
"Id": "/Project",
"Name": "Test Bulk API 2"
}
}
}
]
}
The above creates two projects in one call.
I hope this helps.
Best regards,
Roland