Share Templates
Saved share card layouts for the project; integrations list templates or pair them with reviews for share image generation.
Return every saved share template including default flag and layout settings.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200
Success
application/json
Paginated-style success wrapper with an array of templates in data.
successbooleanOptional
Indicates whether the request completed successfully.
codeintegerOptional
Application-level status code returned by this API.
get/share-templates
GET /project/share-templates HTTP/1.1
Host: api.moregoodreviews.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
Success
{
"success": true,
"code": 200,
"data": [
{
"id": 3,
"uuid": "7d2fcb6a-a5c9-4814-9bdf-94d4c82c3b11",
"name": "Instagram square",
"is_default": true,
"settings": {
"font_family": "Sora",
"header_background_color": "#333333",
"header_text_color": "#FFFFFF",
"name_convention": "first_name_last_initial",
"ratio": "1:1",
"review_background_color": "#FFFFFF",
"review_star_color": "#FCBF02",
"review_text": null,
"review_text_color": "#333333",
"show_avatar": 1,
"show_company": 1,
"show_date": 1,
"show_header": 1,
"show_rating": 1,
"show_source": 1
},
"created_at": 1714507200,
"updated_at": 1714680000
}
]
}Remove a share template and promote another default when the deleted row was default.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idintegerRequired
Unique numeric identifier for the share template.
Responses
200
Success
application/json
Object confirming the share template was deleted.
successbooleanOptional
Indicates whether the request completed successfully.
codeintegerOptional
Application-level status code returned by this API.
delete/share-templates/{id}
DELETE /project/share-templates/{id} HTTP/1.1
Host: api.moregoodreviews.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
Success
{
"success": true,
"code": 200
}Last updated