---
title: "Get review link details"
method: GET
path: "/public-video-review/{link_id}"
tags: ["Public - Review Links"]
---

# Get review link details

`GET /public-video-review/{link_id}`

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 |

## Path parameters

- `link_id` string, uuid, required

## Query parameters

- `token` string, uuid, required

## Response `200`

Review link details returned successfully

- ReviewLinkPublicResponse
  - `id` string, uuid — Review link UUID.
  - `video_id` string, uuid — Associated video UUID.
  - `name` string — Link identifier name.
  - `expires_at` string, 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_comment` boolean — Indicates if comments are enabled.
  - `allow_status_edit` boolean — Indicates if status editing is enabled.
  - `show_resolved` boolean — Indicates if resolved comments are displayed.
  - `created_at` string, date-time — Link creation date and time.
  - `updated_at` string, date-time — Last update date and time.
  - `video_url` string, uri — Video player URL for embedding/display.
  - `video_name` string — Video title.

## Other responses

- `401` — Invalid or missing token
- `403` — Review link expired or inactive
- `404` — Review link not found

---

[API](https://skmtc.net/pandavideo/apis/api-v2.md) · [All operations](https://skmtc.net/pandavideo/apis/api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pandavideo/api-v2/versions/4fbd3c623ca9/schema)
