Quick Start

Get started in minutes with Okendo's Merchant REST API

The Merchant REST API API is not intended for client-side use.

For public and client-side use, see the Storefront REST API.

Get Your Credentials

Your API requests are authenticated using your Okendo User ID and an API Key. You can get these details from the integration settings section of the Okendo app.

Make Your First Request

To make your first request, send an authenticated request to the /reviews endpoint. This will fetch some of your published 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

To make the request, use a networking client of your choice or follow these examples:

Last updated