How can my REST microflow pick up the correct object at http://localhost/rest/servicename/objectid?

0
I currently have this: The transaction retrieved from the database is just the first one it finds in the database.   I would like it to retrieve the object of the objectid requested.
asked
1 answers
3

You can use a Xpath constraint in your retrieve if it is the same object like [id = $Transient_Entity], however this won't work in the current setting because the Transactie and Transient_Entity objects are from different entities. So I suggest you make use of unique identifiers to identify your transactions, like a unique transaction number. Whenever you get a Transient_Entity object from your rest service, you can retrieve the first Transactie like you already did; you only need to add the UID to the Xpath retrieve.

answered