Update More than one Profile parameter via API
I've been able to programmatically create and update profiles via the API; however, I am only update one custom_field_id at a time (per HTTP post API call). Here is the JSON format of the body of the HTTP Post request:
HTTP Post: https://app.trengo.com/api/v2/profiles/100****/custom_fields [*profile ID redacted]
{
"custom_field_id":352358,"value":"123 Main St",
"custom_field_id":352363,"value":"City",
"custom_field_id":352368,"value":"State"
}
If I run/test this via Postman only the last custom field is updated. In Integromat/Make; I have to make a call for each custom field I want to update; so I end up eating 10 operations instead of 1.
Has anyone had success in updating multiple custom profile fields in one API call?