Skip to main content
GET
/
reviews
cURL
curl --request GET \
  --url https://app.masivo.ai/api/storefront/v1/reviews \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "review_form_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "event_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "customer_id": "<string>",
      "source": "<string>",
      "platform": "<string>",
      "brand_id": "<string>",
      "store_id": "<string>",
      "channel_id": "<string>",
      "answers": {
        "score": 4,
        "reason": [
          "wait_time"
        ],
        "comment": "Good follow-up"
      },
      "respondent": {},
      "metadata": {},
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "from": 0,
  "to": 20,
  "count": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.masivo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

from
string
required

Starting record index, starting from 0

to
string
required

Ending record index, starting from 0

review_form_id
string<uuid>

Filter by review form id

customer_id
string

Filter by customer id

anonymous
enum<string>

When true, only responses without a customer_id

Available options:
true,
false
source
string

Filter by source

platform
string

Filter by platform

brand_id
string

Filter by brand id

store_id
string

Filter by store id

channel_id
string

Filter by channel id

created_from
string<date-time>

Filter responses created on or after this ISO 8601 date

created_to
string<date-time>

Filter responses created on or before this ISO 8601 date

Response

Ok

data
object[]
from
number
Example:

0

to
number
Example:

20

count
number
Example:

1