GET /v1/testimonials/\{id\}
Service: content · operationId: (none)
Required scopes
(no scope declared — review service config)
Path parameters
id(string) required —
Responses
200 Single testimonial
{
"type": "object",
"properties": {
"id": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"customerName": {
"type": "string"
},
"brandId": {
"type": "string"
},
"quote": {
"type": "string"
},
"rating": {
"type": [
"number",
"null"
]
},
"featured": {
"type": "boolean"
},
"status": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string"
}
},
"required": [
"id",
"customerName",
"brandId",
"quote",
"status",
"createdAt",
"updatedAt"
]
}404 Testimonial not found
Example
curl -X GET https://content.platform.loop.health/v1/testimonials/{id} \
-H "Authorization: Bearer $ACCESS_TOKEN"Related
services/content— service overview- All endpoints — directory across services
- Auth model — how scopes are enforced