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| Name | Description | Type | Additional 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": "f12cb8f8-7368-465a-a4d9-91649944aa9d",
"ProviderName": "sample string 2",
"SigningKey": "QEA=",
"SigningIv": "QEA="
},
{
"Id": "f12cb8f8-7368-465a-a4d9-91649944aa9d",
"ProviderName": "sample string 2",
"SigningKey": "QEA=",
"SigningIv": "QEA="
}
]