v1Resources/Reviews/postAdd a note to a review
Add a note to a review
Attaches a note to a review.
post
reviews:write/api/v1/reviews/notesRequest body
reviewIdstringrequired
The review to attach the note to.
bodystringrequired
The note's text.
Response
dataobjectoptional
idstringoptional
The note's id.
bodystringoptional
The note's text.
authorUserIdstringoptional
The team member who wrote the note.
authorNamestringoptional
The author's display name. Null if it is unavailable.
createdAtstringoptional
When the note was written (ISO 8601).
Errors
400The request is missing a required parameter or is otherwise malformed.
401Missing, invalid, expired, or revoked API key.
403The key lacks the required scope, or isn't authorized for this client/location.
404The resource wasn't found, or doesn't belong to your agency.
429Too many requests. Retry after the number of seconds in the Retry-After header.
post/api/v1/reviews/notes
Your API key
Request body*
{
"data": {
"id": "cm_note_1",
"body": "Called the patient back — resolved.",
"authorUserId": "cm_user_1",
"authorName": "Jamie Rivera",
"createdAt": "2026-02-01T10:00:00.000Z"
}
}Guides that use this endpoint
- How to Build a Reputation Management PlatformArchitecture and API calls for a multi-client reputation management platform on Synup: review ingestion, reply workflows, invites, widgets and reporting.
- How to Build an AI Agent for Local SEOBuild an AI agent that audits and fixes listings, tracks local rankings, checks AI visibility and drafts review replies with Synup's MCP server or REST tools.
- How to Build an AI Agent That Responds to ReviewsBuild an AI agent that drafts and posts review replies, with rating-based guardrails, human approval for negatives, and protection against injection.
- How to Fetch and Respond to Reviews via APIFetch reviews from Google, Facebook and custom review sites, filter them, post owner replies, add internal notes and read review analytics with the Synup API.
- How to Build Automated Review-Response WorkflowsBuild a review-response workflow that routes reviews by rating and sentiment, drafts replies, approves them, and pushes them back to the platform.
- Respond to a Review via APIPost an owner reply to a review with the Synup API, read the push status back, and know which failures are worth a retry.