Reviews

Endpoints related to Okendo Reviews and review groups

Reviews

List Reviews

get

Returns a list of Reviews for the requested store

Authorizations
AuthorizationstringRequired
Query parameters
limitinteger · int32Optional

A limit on the number of items returned. Between 1 and 100. Default 25.

Example: 25
lastEvaluatedstringOptional

The URL-encoded JSON object representing the cursor for the next page of results.

orderBystringOptional

The sort order of the reviews. Format: '(date|rating) (asc|desc)'. Default 'date desc'

Example: date desc
statusstring · enumOptional

The moderation status of the review.

Example: approvedPossible values:
Responses
200

An object containing a list of Reviews and a relative link to the next page of results if available.

application/json
get
/reviews

Retrieve a Review

get
Authorizations
AuthorizationstringRequired
Path parameters
reviewIdstring · uuidRequired

The ID of the Review to retrieve.

Responses
200

A Review object

application/json
get
/reviews/{reviewId}

Update a Review

put
Authorizations
AuthorizationstringRequired
Path parameters
reviewIdstring · uuidRequired

The ID of the Review to update.

Body
statusstringRequired

The moderation status of the review.

Example: approved
Responses
200

A Review object

application/json
put
/reviews/{reviewId}

Reply to a Review

post
Authorizations
AuthorizationstringRequired
Path parameters
reviewIdstring · uuidRequired

The ID of the Review to reply to.

Body
shouldEmailReplybooleanOptional

Whether the Customer should be notified of the reply via email.

Example: true
Responses
200

The updated Review with the reply included.

application/json
post
/reviews/{reviewId}/reply

Groups

Create a Shopify backed group and return the group created

post
Authorizations
AuthorizationstringRequired
Body
namestringRequired

The name of the group.

isAutoAssignProductsEnabledbooleanRequired

Indicates if the products in the group are automatically assigned to show reviews from other products within the same group.

shopifyCollectionIdstringRequired

The ID of Shopify collection that will be used to create the group.

Example: 123456789
Responses
200

An object containing the group that was just created.

application/json
post
/groups

Last updated