Hi guys,
I hope you are doing great!
I receive a POST request to an API I have defined in r3. It comes with some information.
The default behavior in r3 seems to be to create or update a record of a relation with that information, as by definition for a POST request you associate the API to a relation either to create a new record or to update an existing one. (at least I found no other way to define which information is the API able to expect)
I would need to do some validation and processing with this data before saving the record, and also trigger many other operations based on the data received.
Is there a way to define/access that information before it arrives to the table. (in fact I don't need to save that information to the associated table, I'm just using a temp table because I found no other way to create the API and specify the expected payload)
Thank you!!