v1
latestOpenAPI 3.1.02026-07-2416666272.6 KBPublic - Review Links
Get review link details
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 |
get/public-video-review/{link_id}
Path parameters
link_idstring uuid required
Review link UUID
Query parameters
tokenstring uuid required
User session token. This token identifies the session and will be associated with created comments.
Response
Review link details returned successfully
Example response
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"video_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Client Review v1",
"expires_at": "2025-01-25T23:59:59.000Z",
"status": "active",
"allow_comment": true,
"allow_status_edit": true,
"show_resolved": true,
"created_at": "2025-01-15T10:00:00.000Z",
"updated_at": "2025-01-15T10:00:00.000Z",
"video_url": "https://player-vz-abc123.tv.pandavideo.com.br/embed/?v=xyz789",
"video_name": "Product Presentation Video"
}