GET api/WidevineDataSets

Returns all Widevine data sets. Only 100 data sets can be returned at a time. The following OData query options are allowed: $filter, $orderby, $select, $skip, $top.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of WidevineDataSet
NameDescriptionTypeAdditional information
Id

The ID of the data set.

globally unique identifier

Required

Name

The name of the data set.

string

None.

ServiceCertificateSerial

The serial number of the service certificate.

Collection of byte

Required

Max length: 256

Min length: 1

Created

The date when the data set was created (in the ISO 8601 format).

date

Required

Updated

The date when the Widevine data set was updated last time (in the ISO 8601 format).

date

None.

MadeDefault

The date when the Widevine data set was made as the default one (in the ISO 8601 format). There may be multiple key seeds that were made as the default ones, but only one key seed will be treated as the default one. The default key seed is the last key seed that was made as the default one. If no key seeds were ever made as the default ones, the oldest key seed will be treated as the default one.

date

None.

Status Codes

All HTTP status codes must be expected, but the following status codes are the most probable:

  • OK (200) - All found data sets are successfully returned.
  • BadRequest (400) - The OData query is invalid.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "c35dbcb5-3179-4670-9df9-ac8a09d52b25",
    "Name": "sample string 2",
    "ServiceCertificateSerial": "QEA=",
    "Created": "2024-09-11T10:50:29.2214398+00:00",
    "Updated": "2024-09-11T10:50:29.2214398+00:00",
    "MadeDefault": "2024-09-11T10:50:29.2214398+00:00"
  },
  {
    "Id": "c35dbcb5-3179-4670-9df9-ac8a09d52b25",
    "Name": "sample string 2",
    "ServiceCertificateSerial": "QEA=",
    "Created": "2024-09-11T10:50:29.2214398+00:00",
    "Updated": "2024-09-11T10:50:29.2214398+00:00",
    "MadeDefault": "2024-09-11T10:50:29.2214398+00:00"
  }
]