API Reference//
- Update an existing review template
Find email Identities for given list of email addresses
Create a new email Identity
Resend verification email for given email address
Find review templates for given location Ids
Create new review template for given location Ids
Start a review generation job for given customer location Ids and review template Id
Find review template jobs for given location Ids
Get review template media presigned S3 url
Update an existing review...
Updates a review template. When email is present the template type is EMAIL and the locations' businesses need the REVIEW_GENERATION_EMAIL product plan feature; when email is absent the template type is SMS (REVIEW_GENERATION_SMS). For EMAIL templates every review link must have a label.
Ids of the locations this template applies to. The locations' businesses need the matching product plan feature (REVIEW_GENERATION_EMAIL or REVIEW_GENERATION_SMS).
SMS sender name (3-11 characters), used for SMS templates
Email settings. When present the template type is EMAIL and every review link needs a label; when absent the template type is SMS.
- https://uberall.com/apihttps://uberall.com/api/customer-engagement/review-template/{id}
- Mock Serverhttps://docs.uberall.com/_mock/apis/swagger/customer-engagement/review-template/{id}
curl -i -X PUT \
'https://uberall.com/api/customer-engagement/review-template/{id}' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"locationIds": [
0
],
"bodyText": "string",
"senderName": "string",
"email": {
"senderEmailId": "user@example.com",
"footerText": "string",
"subject": "string",
"actionButtonColor": "#3C8ECB",
"privacyLink": "string",
"mediaIds": [
0
]
},
"reviewLinks": [
{
"url": "string",
"label": "string"
}
]
}'OK response
Response
{ "id": 0, "type": "string", "name": "string", "locationIds": [ 0 ], "bodyText": "string", "senderName": "string", "email": { "senderEmailId": "string", "footerText": "string", "subject": "string", "actionButtonColor": "string", "privacyLink": "string", "media": [ … ] }, "reviewLinks": [ { … } ], "createdAt": "string", "updatedAt": "string", "errors": [ "string" ], "message": "string" }