Delete Review Response
This page describes how to delete a specific client response record.
Request
HTTP DELETE is required.
DELETE https://[stg.]api.bazaarvoice.com/response/v1/clientResponses/{responseGuid}?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 ofhttps://[stg.]api.bazaarvoice.com/**response**
. Thecontentmanagement
URL has been deprecated. However, Bazaarvoice will continue to support applications that use thecontentmanagement
URL until further notice.
Parameters
Name | Description | Required |
---|---|---|
Path | ||
responseGuid | Guid of the 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 204 indicates success. Other header values are documented in the API Reference.
Body
The response will not contain any body content.
Errors
For a detailed description and solution for Response API errors, refer to Troubleshooting.
There are no specific errors for this request type. For any well formatted request, the API will always respond with the following 204 response.
An HTTP 204 code is returned, the server successfully processed the request, but is not returning any content.
Updated 10 months ago