v1Resources/Review Invites/patchUpdate a message template
Update a message template
Edits a template. Pass only the fields you want to change.
patch
review-invite:write/api/v1/review-invites/templates/{id}Query parameters
idstringrequired
The template to update. Required.
Request body
namestringoptional
The template's display name.
descriptionstringoptional
A short description of when to use this template.
contentobjectoptional
The template content, as the builder's rich-text JSON shape.
assignedLocationIdsarray of stringoptional
Location ids this template is suggested for. Omit to make it available agency-wide.
Response
dataobjectoptional
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.
patch/api/v1/review-invites/templates/{id}
Your API key
id *
Request body
{
"data": {
"id": "cm_tmpl_1",
"agencyId": "cm_agency_1",
"name": "Standard follow-up",
"description": "Default post-visit email template (updated)",
"content": null,
"assignedLocationIds": [
"cm_loc_1"
],
"createdAt": "2026-01-15T09:00:00.000Z",
"updatedAt": "2026-01-16T09:00:00.000Z"
}
}