Review
This page describes the Review resource.
Request
To access interactive tools and applications to help you work with the Response API, refer to Tools.
The following code block shows a sample request.
GET https://[stg.]api.bazaarvoice.com/response/v1/clientResponses/{responseGUID}/review?passkey={RESPONSE_API_PASSKEY} HTTP/1.1
Authorization: Bearer {ACCESS_TOKEN}
...
Ellipses (…) in above example indicate that your app may generate other headers.
Older applications may be using https://[stg.]api.bazaarvoice.com/contentmanagement as the base URL for the Response API, instead of https://[stg.]api.bazaarvoice.com/response. The contentmanagement URL has been deprecated. However, Bazaarvoice will continue to support applications that use the contentmanagement URL until further notice.
Parameters
Name | Description | Required |
---|---|---|
Path | ||
responseGUID | The ID for a given client review response. | Yes |
QueryString | ||
passkey | Response API passkey. | Yes |
Header | ||
Authorization | The Authorization value will consist of the string Bearer followed by the OAuth2 access token. Refer to OAuth2 Integration for more information. | Yes |
Response
Header
HTTP status 200 indicates success. Other header values are documented in the API Reference.
Body
A successful response will contain a JSON object in the body. The following demonstrates a typical successful creation of a client response:
{
"data": {
"type": "review",
"id": "75266",
"clientName": "someClientName"
},
"links": {
"self": "https://[stg.]api.bazaarvoice.com/response/v1/clientResponses/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/relationships/review",
"related": "https://[stg.]api.bazaarvoice.com/response/v1/clientResponses/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/review"
}
}
The response syntax follows the JSON API specification, exposing data
, links
, and relationships
nodes.
Errors
To fix Response API errors, refer to Troubleshooting.
Updated 10 months ago