delete
https://api-v2.pandavideo.com.br/public-video-review//comments/
Deletes a comment and all its replies.
Authentication
| Parameter | Type | Description |
|---|---|---|
link_id | path | Review link identifier |
comment_id | path | Comment identifier |
token | query | User session token |
To delete a comment, use the same token used when creating the comment. The token can be the same value as link_id or a unique identifier generated by the application.
Example: 550e8400-e29b-41d4-a716-446655440000
Behavior
- Deleting a parent comment also deletes all linked replies
- This action is irreversible
- The link must be active and not expired
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
DELETE /public-video-review/{link_id}/comments/{comment_id}
{link_id}/comments/{comment_id}Deletes a comment from the reviewer side. Replies under it are removed as well.
Authentication: session tokenPass the same
tokenthat was used to create the comment. A different token cannot delete the comment.
HTTP Method & Path
DELETE /public-video-review/{link_id}/comments/{comment_id}?token=<uuid>
Base URL: https://api-v2.pandavideo.com.br
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
link_id | string (uuid) | yes | Review link UUID. |
comment_id | string (uuid) | yes | Comment UUID. |
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
token | string (uuid) | yes | Reviewer session token. |
Response
Success Response (200)
{ "msg": "success removed!" }
Cascade. Deleting a top‑level comment also deletes all its replies. This is irreversible.
Error Responses
- 401 — missing/invalid
token. - 403 — link expired/inactive.
- 404 — comment not found.
- 500 — internal error.
Example Usage
cURL
curl --request DELETE \
--url 'https://api-v2.pandavideo.com.br/public-video-review/550e8400-e29b-41d4-a716-446655440000/comments/b2c3d4e5-f6a7-8901-bcde-f23456789012?token=550e8400-e29b-41d4-a716-446655440000'