Passo Developers
Api

List a version's comments

GET
/video-versions/{versionId}/comments

Returns every timestamped comment (and one-level reply) on the given video version, oldest first — each with its body, start/end milliseconds, visibility, author id, and resolution. Not paginated. A workspace member sees internal and shared comments. total is the row count.

Authorization

oauthJwt
AuthorizationBearer <token>

A Supabase-issued OAuth user access token. On collection endpoints, pair with a Passo-Workspace header to pick a workspace.

In: header

Path Parameters

versionId*string
Length1 <= length

Response Body

application/json

curl -X GET "https://example.com/video-versions/string/comments"
{  "comments": [    {      "id": "string",      "versionId": "string",      "parentId": "string",      "authorUserId": "string",      "body": "string",      "startMs": -9007199254740991,      "endMs": -9007199254740991,      "visibility": "internal",      "resolvedAt": "string",      "resolvedByUserId": "string",      "createdAt": "string",      "updatedAt": "string"    }  ],  "total": -9007199254740991}