Wingfield Logo
Wingfield Partner API
Session

List session videos

GET
/api/v1/sessions/{sessionId}/videos

Retrieve videos belonging to a specific session.

Path Parameters

sessionId*string

Session ID (UUID).

Formatuuid

Query Parameters

offset?integer

Number of items to skip.

Default0
Range0 <= value
limit?integer

Maximum number of items to return.

Default50
Range1 <= value <= 100
videoType?string

Optional filter by video type.

Value in"SESSION_VIDEO" | "AUTOMATIC_HIGHLIGHTS" | "CUSTOM_HIGHLIGHTS"

Error Responses

400

invalid_schema

Request validation failed.

401

missing_api_token

No authentication token provided.

401

invalid_api_token

Invalid or expired authentication token.

403

scope_permission_denied

Insufficient permissions for this operation.

403

user_access_denied

Service is not granted access to the user.

404

session_not_found

Session was not found.

curl -X GET "https://dev.wingfield.systems/api/v1/sessions/497f6eca-6276-4993-bfeb-53cbbbba6f08/videos"
{
  "items": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "fps": 0,
      "videoUrl": "http://example.com",
      "thumbnailUrl": "http://example.com",
      "resolution": "360p",
      "type": "SESSION_VIDEO",
      "sessionId": "f6567dd8-e069-418e-8893-7d22fcf12459"
    }
  ],
  "totalCount": 0
}
{
  "error": {
    "type": "invalid_schema",
    "message": "string",
    "issues": [
      {}
    ]
  }
}
{
  "error": {
    "type": "missing_api_token",
    "message": "string"
  }
}
{
  "error": {
    "type": "scope_permission_denied",
    "message": "string"
  }
}
{
  "error": {
    "type": "session_not_found",
    "message": "string"
  }
}