delete
https://api-v2.pandavideo.com.br/video-review//
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
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
DELETE /video-review/{video_id}/{link_id}
{video_id}/{link_id}Permanently deletes a review link. Comments on the underlying video are not removed.
AuthorizationRequires a valid API Key in the
Authorizationheader. Send the key directly — noBearerprefix.
?action=linkis requiredWithout
?action=linkthe 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
| Name | Type | Required | Description |
|---|---|---|---|
video_id | string (uuid) | yes | Video UUID. |
link_id | string (uuid) | yes | Review link UUID. |
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
action | string | yes | Must 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>'