I want to create a workflow where an external server sends a request to change a property of a survey participant response. Based on this we want to trigger the sending of an email with a personalized gift code.
If I understand correctly I could use the API key to send a POST request to update a field. The payload would look something like: {‘responseId’ : ‘xxxxxxxxxxx’, ‘activated’: True}
I have two questions:
1. How to make this request from a party that is not trusted with sensitive user data. One way would be for the third party server to have write only access, but I have not figured out how to do that.
2. (Even more basically) How to correctly update a record with incoming information and trigger the sending of a personalized email based on an external POST request.
Thank you so much