Delete review link

Permanently deletes a review link.

Authentication

This endpoint requires authentication via API Key in the Authorization header.

Authorization: <your-api-key>

Action Parameter

This endpoint uses the query parameter action=link to identify the operation.

DELETE /video-review/{video_id}/{link_id}?action=link

Behavior

  • This action is irreversible
  • The public link URL will stop working immediately
  • Video comments are NOT deleted with the link
Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

DELETE /video-review/{video_id}/{link_id}

Permanently deletes a review link. Comments on the underlying video are not removed.

📘

Authorization

Requires a valid API Key in the Authorization header. Send the key directly — no Bearer prefix.

🚧

?action=link is required

Without ?action=link the request returns 404 Route not found.

HTTP Method & Path

DELETE /video-review/{video_id}/{link_id}?action=link

Base URL: https://api-v2.pandavideo.com.br

Path Parameters

NameTypeRequiredDescription
video_idstring (uuid)yesVideo UUID.
link_idstring (uuid)yesReview link UUID.

Query Parameters

NameTypeRequiredDescription
actionstringyesMust be link.

Response

Success Response (200)

{ "msg": "success removed!" }
⚠️

Irreversible. The public URL stops working immediately. Comments tied to the underlying video remain — only the link is removed.

Error Responses

  • 401 — missing/invalid API Key.
  • 404 — user, video or link not found.
  • 500 — internal error.

Example Usage

cURL

curl --request DELETE \
  --url 'https://api-v2.pandavideo.com.br/video-review/a1b2c3d4-e5f6-7890-abcd-ef1234567890/550e8400-e29b-41d4-a716-446655440000?action=link' \
  --header 'Authorization: <your-api-key>'

Recipes

Path Params
Query Params
Responses

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