Question

Restrict record modification using DataService

Hello,

 

We have a table, and we presently use DataService to insert and modify data in it as part of our workflow.

 

We now have a requirement that DataService does not alter data in the table until a condition is met. Is this something that can be done?

 

Thanks in advance.

Like 0

Like

1 comments

Hi Sarthak, 

 

 

Usually such conditions are checked on your side. Not on the Creatio app side. So definitely you are better off doing this check on your app(Fiddler, Postman ect.).

 

This will be also better for the performance, since you do not have to check all the data on the server side, thereby not overloading it.

 

So even if you need to check some particular data from Creatio and make a conclusion based on this data, then you might send GET request to the endpoint, read all data you need, check on your side if condition is met and then make further steps according to your business logic.

 

Best Regards, 

 

Bogdan L

 

 

 

Show all comments