Hi, glad it helps you out a bit :grinning:

I’ve just added a new update (v1.1.1) which has an API call that allows you to create / update a contact whilst populating any fields that you specify.

Eg. if you wanted to update the contact’s (john.doe@example.com) NAME (text field), ID (assuming number field) and LOCATION (text field) then you would use the ‘Create and update contact WITH CUSTOM ATTRIBUTES’ call with the below Body JSON data:
{
“email”: “john.doe@example.com”,
“attributes” : {
“NAME”: “John Doe”
“ID”: 493824,
“LOCATION”: “United Kingdom”
},
“updateEnabled”: true
}

Any issues just give me a shout.

2 Likes