Start a review generation job for given customer location Ids and review template Id
Starts a review generation job that sends the review requests to the given customer locations using an existing review template. NOTE: delivery is immediate — the scheduledDateTimeUtc parameter is not supported, does not defer sending, and will be removed in a future version. When the user lacks the required feature or the review template id does not exist, the response is HTTP 200 with an empty jobs list and an explanatory message. If any review link cannot be resolved for any of the given locations, the entire request is rejected: no jobs are created and the failure reasons are reported in the errors field.
Request body
Example request
{
"scheduledDateTimeUtc": "2026-08-04T12:34:56.789"
}Response
OK. jobs is empty and message is set when the user lacks the required feature or the review template does not exist; jobs is empty and errors is populated when any review link cannot be resolved.
Example response
{
"jobs": [
{
"reviewTemplate": {
"createdAt": "2026-08-04T12:34:56.789",
"updatedAt": "2026-08-04T12:34:56.789"
},
"createdAt": "2026-08-04T12:34:56.789",
"scheduledDateTimeUtc": "2026-08-04T12:34:56.789"
}
]
}