Toggle reaction on a contact note
Contact Notes
Toggle reaction on a contact note
Add or remove the caller’s reaction (an emoji) on a contact note. Acts as a toggle — re-sending the same emoji removes it.
POST
Toggle reaction on a contact note
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Unicode emoji character; first toggle adds the reaction, second toggle removes it.
Response
Reaction toggled
Available options:
true Populated note row. userId is populated to the user document (see ContactNoteAuthor).
Example:
{
"_id": "67f0a0b0c0d0e0f0a0b0c0d0",
"userId": {
"_id": "65b1f0a2c3d4e5f6a7b8c9d3",
"fullName": "Cory Tan",
"email": "cory@example.com"
},
"note": "@alice please review the W2 attached.",
"attachments": [
{
"name": "w2.pdf",
"size": 121200,
"type": "application/pdf",
"signedUrl": "https://r2.example.com/orgs/65a0.../notes/w2.pdf?token=..."
}
],
"reactions": [
{
"emoji": "👍",
"users": ["65b1f0a2c3d4e5f6a7b8c9d0"],
"count": 1
}
],
"isEdited": false,
"createdAt": "2026-05-18T14:00:00.000Z"
}