v1
latestOpenAPI 3.0.12026-07-243266138.0 KBEndpoints
Create a veto for a review
This endpoint creates a veto for the specified review. A veto flags a review as inappropriate and suggests that the review should be removed or investigated. Veto objects consist of a comment, a reason and the associated channel name.
Note that whenever this method is called, eTrusted will create a ticket in Trusted Shops' Review Team board containing the veto data for further investigation.
post/reviews/{reviewId}/vetos
Path parameters
reviewIdstring required
The review ID.
Request body
Example request
{
"comment": "My veto comment.",
"reason": "UNTRUTHFUL",
"vetoReporterEmail": "my-name@my-domain.com",
"channelName": "My channel name."
}Response
The veto has been saved succesfully.
Example response
{
"id": "vet-xxxxxxxx-yyyy-xxxx-yyyy-xxxxxxxxxxxx",
"ticketId": "123123",
"comment": "example comment",
"reason": "UNTRUTHFUL",
"createdAt": "2018-02-01T17:09:41.790Z",
"updatedAt": "2018-02-01T17:09:41.790Z"
}