GET api/WidevineProtectionInfoCredentials

Returns all Widevine Protection Info credentials that belong to the current tenant.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of WidevineProtectionInfoCredentials
NameDescriptionTypeAdditional information
Id

The ID of the credentials.

globally unique identifier

None.

ProviderName

The name of the provider.

string

Required

Max length: 128

Min length: 1

SigningKey

The key to use for signing.

Collection of byte

Required

Max length: 32

Min length: 32

SigningIv

The initialization vector to use for signing.

Collection of byte

Required

Max length: 16

Min length: 16

Status Codes

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

  • OK (200) - All found Widevine Protection Info credentials are successfully returned.
  • BadRequest (400) - The OData query is invalid.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "a7d13cc3-ebc8-434c-bbed-9b555a038d0d",
    "ProviderName": "sample string 2",
    "SigningKey": "QEA=",
    "SigningIv": "QEA="
  },
  {
    "Id": "a7d13cc3-ebc8-434c-bbed-9b555a038d0d",
    "ProviderName": "sample string 2",
    "SigningKey": "QEA=",
    "SigningIv": "QEA="
  }
]