rest api service activity

1
can anyone tell me after calling the rest service and importmapping how to update the local database.
asked
1 answers
2

The output from your  "Call REST Service" microflow activity will return a variable, which will represent the root object of your import mapping.

Then:

  • If your import mapping uses peristable (blue) entities in the domain model, the objects themselves will be created and committed to your database according to the import mapping configuration.
  • If your mapped objects are non-peristable (yellow-orange) entities in the domain model, you'll want to then use a combination of retrieve, create, and change microflow activities to update your persistable domain model with the new data.
answered