reviews
Delete review reply
Delete a reply to a review (Google Business only). Requires accountId in request body.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
reviewIdstring
accountIdstring
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.reviews.deleteInboxReviewReply({ path: { reviewId: 'review_abc123', }, body: { accountId: 'account_abc123', },});console.log(data);{
"status": "string",
"message": "string",
"platform": "string"
}{
"error": "Unauthorized"
}Empty