Hi Creatio Community,
I'm currently working with batch operations in Creatio and have successfully tested some requests that are working fine.
I have a question regarding inserting column values that reference other tables by their respective columns. Specifically, I need to perform operations on a large number of columns and data, which could be time-consuming if I have to manually map the IDs based on their codes.
Is there a more efficient way to handle this?
Here’s an example of a request I’m working with:
{
"requests": [
{
"method": "POST",
"atomicityGroup": "g1",
"url": "City",
"id": "t3",
"body": {
"Name": "TestName",
"Country.Code": "USA"
},
"headers": {
"Content-Type": "application/json;odata=verbose",
"Accept": "application/json;odata=verbose",
"Prefer": "continue-on-error"
}
}
]
}