Skip to main content
GET
/
reviews
/
{prefix_id}
Get review
curl --request GET \
  --url https://api.crevio.co/v1/reviews/{prefix_id} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "rating": 3,
  "content": "<string>",
  "customerName": "<string>",
  "customerImage": {
    "filename": "<string>",
    "contentType": "<string>",
    "byteSize": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "signedId": "<string>",
    "src": "<string>",
    "srcSet": "<string>"
  },
  "position": 123,
  "prefixId": "<string>",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API key in the format: Bearer {api_token}

Path Parameters

prefix_id
string
required

The resource prefix ID

Response

Review details

id
integer
rating
integer
Required range: 1 <= x <= 5
content
string

The review text content

customerName
string

Name of the customer who wrote the review

customerImage
object

Avatar image of the customer

position
integer

Display position of the review

prefixId
string
createdAt
string<date-time>