Hello,
I’m trying to use Filemaker to retrieve and update pieces of our contact record. Using cURL, I can pretty easily get whatever I need from the contact record at the moment. Now, I need to find specific examples showing me clearly how to use Filemaker to send a command back to the hubspot database to update a property field. In this example, I want to set ‘enrollment_stage’ to ‘applicant’.
curl --request PATCH \
--url ‘https://api.hubapi.com/crm/v3/objects/contacts{contactId}?hapikey=YOUR_HUBSPOT_API_KEY’ \
--header ‘content-type: application/json’ \
--data ‘{
“properties”: {
“enrollment_stage”: “Applicant”
}
}’
How do you get Filemaker to send that?