Skip to main content
POST
/
reviews
/
{id}
/
respond
Respond to a review
curl --request POST \
  --url https://api.pocketflows.com/reviews/{id}/respond \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "response_text": "<string>"
}'
{
  "id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "source": "internal",
  "stars": 123,
  "review_text": "<string>",
  "customer": "<string>",
  "business": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The ID of the review

Body

application/json
response_text
string
required

The response to the review

Response

200 - application/json

The Review object

id
string
required

The ID of the review

created_at
string
required

The date and time the review was created

updated_at
string
required

The date and time the review was last updated

source
enum<string>
required

The source of the review

Available options:
internal,
google,
yelp
stars
integer
required

The number of stars the review has

review_text
string | null
required

The text of the review

customer
string | null
required

The ID of the customer who wrote the review

business
string
required

The ID of the business that the review is about

I