Delete comment

Deletes a comment and all its replies.

Authentication

ParameterTypeDescription
link_idpathReview link identifier
comment_idpathComment identifier
tokenqueryUser 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
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

DELETE /public-video-review/{link_id}/comments/{comment_id}

Deletes a comment from the reviewer side. Replies under it are removed as well.

📘

Authentication: session token

Pass the same token that 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

NameTypeRequiredDescription
link_idstring (uuid)yesReview link UUID.
comment_idstring (uuid)yesComment UUID.

Query Parameters

NameTypeRequiredDescription
tokenstring (uuid)yesReviewer 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'

Recipes

Path Params
uuid
required
uuid
required

Comment UUID

Query Params
uuid
required

User session token. Use the same token used when creating the comment.

Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json