API – Update a Record

action – update

To update a record, pass the action update, specify a single record, and send an array of one or more values to editable fields only. Note that updating a record will automatically trigger any Automations on the record attached to the edit event.

Sample Request

{ "account": *** your account id ***, "apikey": "*** your api key ***", "action": "update", "recordurl": "person/12345", "values": { "Email": "john@smithmotors.co.uk", "MobilePhone": "07890123456" } }

Sample Response

{ "success": true }

Get Started