Skip to main content

List Screenshot Templates

Request

Request-Line

Get /lls/v1.0/template/screenshot

Request

Query Parameters

NameTypeRequiredDescription
domainStringOptionalingest domain name
appStringOptionalapp name. if not specified, the screenshot template will be applied to all apps.
streamStringOptionalstream name. if not specified, the screenshot template will be applied to all streams.
bucketStringOptionalbucket name to store the screenshot.

Response

Response Body

ParameterTypeRequiredDescription
templatesArrayMandatoryArray of Screenshot Template Object.

Object: Screenshot Template

NameTypeRequiredDescription
templateNameStringMandatoryscreenshot template name.
createdTimestampMandatoryTimestamp of created time in UTC timezone. Default is now.
statusStringMandatoryStatus of screenshot template. Valid values: active, inactive.
domainStringMandatoryingest domain name
appStringOptionalapp name. if not specified, the screenshot template will be applied to all apps.
streamStringOptionalstream name. if not specified, the screenshot template will be applied to all streams.
bucketStringMandatorybucket name to store the screenshot.
pathStringMandatorystorage path under the bucket.

Examples

List screenshot templates by domain

Request

GET /lls/v1.0/template/screenshot?domain=ingest.example.com HTTP/1.1

Successful Response Body

{
"templates": [
{
"templateName": "domainTemplate",
"created": "2025-07-15T08:47:10Z",
"status": "active",
"domain": "ingest.example.com",
"bucket": "my-bucket",
"path": "/recording/mp4/"
},
{
"templateName": "appTemplate",
"created": "2025-07-15T08:48:30Z",
"status": "inactive",
"domain": "ingest.example.com",
"app": "live",
"bucket": "my-bucket",
"path": "/recording/hls/"
},
{
"templateName": "streamTemplate",
"created": "2025-07-15T08:49:45Z",
"status": "active",
"domain": "ingest.example.com",
"app": "live",
"stream": "stream1",
"bucket": "my-bucket",
"path": "/recording/hls/"
},
{
"templateName": "deliveryTemplate",
"created": "2025-07-15T08:51:30Z",
"status": "active",
"domain": "ingest.example.com",
"app": "live",
"stream": "stream1",
"bucket": "my-bucket",
"path": "/recording/hls/"
}
]
}

List screenshot templates by domain and app

Request

GET /lls/v1.0/template/screenshot?domain=ingest.example.com&app=live HTTP/1.1

Successful Response Body

{
"templates": [
{
"templateName": "appTemplate",
"created": "2025-07-15T08:48:30Z",
"status": "inactive",
"domain": "ingest.example.com",
"app": "live",
"bucket": "my-bucket",
"path": "/recording/hls/"
},
{
"templateName": "streamTemplate",
"created": "2025-07-15T08:49:45Z",
"status": "active",
"domain": "ingest.example.com",
"app": "live",
"stream": "stream1",
"bucket": "my-bucket",
"path": "/recording/hls/"
},
{
"templateName": "deliveryTemplate",
"created": "2025-07-15T08:51:30Z",
"status": "active",
"domain": "ingest.example.com",
"app": "live",
"stream": "stream1",
"bucket": "my-bucket",
"path": "/recording/hls/"
}
]
}

List screenshot templates by domain, app and stream

Request

GET /lls/v1.0/template/screenshot?domain=ingest.example.com&app=live&stream=stream1 HTTP/1.1

Successful Response Body

{
"templates": [
{
"templateName": "streamTemplate",
"created": "2025-07-15T08:49:45Z",
"status": "active",
"domain": "ingest.example.com",
"app": "live",
"stream": "stream1",
"bucket": "my-bucket",
"path": "/recording/hls/"
},
{
"templateName": "deliveryTemplate",
"created": "2025-07-15T08:51:30Z",
"status": "active",
"domain": "ingest.example.com",
"app": "live",
"stream": "stream1",
"bucket": "my-bucket",
"path": "/recording/hls/"
}
]
}

List screenshot templates by bucket

Request

GET /lls/v1.0/template/screenshot?bucket=my-bucket HTTP/1.1

Successful Response Body

{
"templates": [
{
"templateName": "domainTemplate",
"created": "2025-07-15T08:47:10Z",
"status": "active",
"domain": "ingest.example.com",
"bucket": "my-bucket",
"path": "/recording/mp4/"
},
{
"templateName": "appTemplate",
"created": "2025-07-15T08:48:30Z",
"status": "inactive",
"domain": "ingest.example.com",
"app": "live",
"bucket": "my-bucket",
"path": "/recording/hls/"
},
{
"templateName": "streamTemplate",
"created": "2025-07-15T08:49:45Z",
"status": "active",
"domain": "ingest.example.com",
"app": "live",
"stream": "stream1",
"bucket": "my-bucket",
"path": "/recording/hls/"
},
{
"templateName": "otherDomainTemplate",
"created": "2025-07-14T10:30:15Z",
"status": "active",
"domain": "ingest2.example.com",
"bucket": "other-bucket",
"path": "/recording/mp4/"
}
]
}

List screenshot templates by bucket

Request

GET /lls/v1.0/template/recording?bucket=my-bucket HTTP/1.1

Successful Response Body

{
"templates": [
{
"templateName": "domainTemplate",
"created": "2025-07-15T08:47:10Z",
"status": "active",
"domain": "ingest.example.com",
"bucket": "my-bucket",
"path": "/recording/mp4/"
},
{
"templateName": "appTemplate",
"created": "2025-07-15T08:48:30Z",
"status": "inactive",
"domain": "ingest.example.com",
"app": "live",
"bucket": "my-bucket",
"path": "/recording/hls/"
},
{
"templateName": "streamTemplate",
"created": "2025-07-15T08:49:45Z",
"status": "active",
"domain": "ingest.example.com",
"app": "live",
"stream": "stream1",
"bucket": "my-bucket",
"path": "/recording/hls/"
},
{
"templateName": "deliveryTemplate",
"created": "2025-07-15T08:51:30Z",
"status": "active",
"domain": "ingest.example.com",
"app": "live",
"stream": "stream1",
"bucket": "my-bucket",
"path": "/recording/hls/"
}
]
}
Rate Limits

Rate limiting is posed upon the API, please kindly check your API calls to ensure complying with the rate limit below:

  • 100 requests per minute
  • 1000 requests per hour