hey guys!
So I’m trying to add a contact note through a simple php api script
(a webhook triggers it when a contact is added)
The tags work fine but the notes don’t…
Am I missing something?
Here’s the code example im using;
$contact['tags'] = array($tag1,$tag2,$tag3); // works fine
$contact['notes'] = array($note1,$note2,$note3); // doesn't work
$contact['notes'] = "this is a note"; // still not working
Here is how it shows up in the dashboard;
Any help is appreciated!
Thanks !