Codeless transaction cascade delete

Hello,

I have a table A with a relation column to table B. I want to delete an entity of table A and the related entity in table B in one transaction with codeless. Knowing that I have only the objectId of entity of table A.

How can I do to delete entity of table B and entity of table A in the same transaction ?

Thank you.

Hello @Seb777

Yes, you definitely could do it.

Here is an example of how that could look.

And as result we have:
3 deleted objects in Table B
1 deleted object in Table A

image

If something is still unclear, please let me know.

Regards, Dima.

Hello @Dima

It works, thank you very much !

Is there a documentation about this please ?

Hello @Seb777,

Please take a look at this Support For Transaction API For Codeless article.
And here is the transactions documentation for the REST API.

Regards,
Olha