Does V3 of the API have a function equivalent to contact_note_add in V1?
I can see a function in V3 to retrieve notes, but no create.
Thank you.
Does V3 of the API have a function equivalent to contact_note_add in V1?
I can see a function in V3 to retrieve notes, but no create.
Thank you.
Hi there, Amy from ActiveCampaign’s Customer Experience Team. We’re just refreshing our forum page and I wanted to add some help here for anyone who comes across this page/question/post.
With our API v3, there isn’t a specific endpoint equivalent to the contact_note_add
function in version. However, you can achieve similar functionality by using the endpoints available in version 3.
To add a note to a contact in version 3 of the API, you typically follow these steps:
/contacts
endpoint or other relevant endpoints./notes
endpoint to create a note and associate it with the contact. You’ll need to provide the contact’s ID along with the content of the note.Here’s an example of how you can create a note for a contact using version 3 API:
POST /api/3/notes
{
"note": {
"contact": "CONTACT_ID_HERE",
"note": "Your note content here"
}
}
Replace "CONTACT_ID_HERE"
with the ID of the contact you want to add the note to, and "Your note content here"
with the actual content of the note.
Any questions or additional ideas, thread them below!