get
https://api-v2.pandavideo.com.br/public-video-review/
Returns the details of a review link, including video information and configured permissions.
Behavior
- Returns the video player URL for display
- Includes the video name and link permission settings
- Checks if the link is active and not expired
- Expired or inactive links return a 403 error
Returned Permissions
| Field | Description |
|---|---|
allow_comment | Whether comments are enabled |
allow_status_edit | Whether status changes (open/resolved) are allowed |
show_resolved | Whether resolved comments are displayed |
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
GET /public-video-review/{link_id}
{link_id}Returns the details of a review link from the reviewer side. Used by the public review web app to render the player and enforce the link's permissions.
Authentication: session tokenThe reviewer passes a
tokenUUID as a query parameter. This token identifies the reviewer's session and is bound to any comment they create. To later edit/delete a comment, use the sametokenthat was used on creation.The token can be the same value as
link_idor any client‑generated UUID.
HTTP Method & Path
GET /public-video-review/{link_id}?token=<uuid>
Base URL: https://api-v2.pandavideo.com.br
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
link_id | string (uuid) | yes | Public review link UUID (the same id used in https://review.pandavideo.com/{link_id}). |
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
token | string (uuid) | yes | Reviewer session token. |
Response
Success Response (200)
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"video_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Client Review v1",
"status": "active",
"expires_at": "2025-01-25T23:59:59.000Z",
"allow_comment": true,
"allow_status_edit": true,
"show_resolved": true,
"video_url": "https://player-vz-abc123.tv.pandavideo.com.br/embed/?v=xyz789",
"video_name": "Product Presentation Video"
}Response Schema
| Field | Type | Description |
|---|---|---|
id | string (uuid) | Review link identifier. |
video_id | string (uuid) | Underlying video UUID. |
name | string | Link display name. |
status | string | active | expired. |
expires_at | string (ISO date‑time) | Expiration moment. |
allow_comment | boolean | If false, create comment is blocked. |
allow_status_edit | boolean | If false, comment status changes are blocked. |
show_resolved | boolean | If false, the listing hides resolved comments. |
video_url | string (uri) | Embeddable player URL. |
video_name | string | Underlying video title. |
Error Responses
- 401 — missing/invalid
token. - 403 — link is expired or inactive.
- 404 — link not found.
- 500 — internal error.
Example Usage
cURL
curl --request GET \
--url 'https://api-v2.pandavideo.com.br/public-video-review/550e8400-e29b-41d4-a716-446655440000?token=550e8400-e29b-41d4-a716-446655440000'