v1

latestOpenAPI 3.1.02026-07-2416666272.6 KB
Public - 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

FieldDescription
allow_commentWhether comments are enabled
allow_status_editWhether status changes (open/resolved) are allowed
show_resolvedWhether 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

idstring uuid

Review link UUID.

video_idstring uuid

Associated video UUID.

namestring

Link identifier name.

expires_atstring date-time

Link expiration date and time.

status'active' | 'expired'

Current link status:

  • active: Link is active and accessible
  • expired: Link has expired, can no longer be accessed
allow_commentboolean

Indicates if comments are enabled.

allow_status_editboolean

Indicates if status editing is enabled.

show_resolvedboolean

Indicates if resolved comments are displayed.

created_atstring date-time

Link creation date and time.

updated_atstring date-time

Last update date and time.

video_urlstring uri

Video player URL for embedding/display.

video_namestring

Video title.

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"
}