Concurrent Playback Prevention Management
Notice
This document is a machine-translated draft and is currently undergoing review. Some content may be inaccurate or differ from the original Korean version. For the most precise information, refer to the Korean documentation.
New feature notice
- Support scope: Concurrent playback prevention management is a feature newly added in v3 and is not supported in v1 or v2.
- Common path parameter: All endpoints require
{service_account_key}, the unique identifier of the target service account, in the URL path. - Common authentication: All APIs use a common authentication method via a query string parameter (
?access_token=).
Get concurrent playback prevention logs
- Supported version (v3):
GET/service-accounts/{service_account_key}/duplicate-blocks/logs
Request parameters and response structure details
Request query parameters
| Parameter | Data type | Required | Description |
|---|---|---|---|
client_user_id | String | Optional | Customer user ID |
player_id | String | Optional | Player (device) ID |
start_date | String | Optional | Start date and time of the search range |
end_date | String | Optional | End date and time of the search range |
page | Integer | Optional | Page number to retrieve |
per_page | Integer | Optional | Number of records to display per page |
Response structure specification
{
"data": [
{
"id": 1,
"media_content_title": "title_string",
"upload_file_key": "upload_file_key_string",
"player_id": "player_id_string",
"key": "key_string",
"client_user_id": "user_01",
"hardware_id": "hw_id_string",
"created_at": "2023-10-01T10:00:00Z"
}
],
"pagination": {
"total_count": 1,
"page": 1,
"per_page": 10
}
}
Get allowed devices for concurrent playback
- Supported version (v3):
GET/service-accounts/{service_account_key}/duplicate-blocks/players
Request parameters and response structure details
Delete an allowed device for concurrent playback
- Supported version (v3):
DELETE/service-accounts/{service_account_key}/duplicate-blocks/players
Request parameters and response structure details
Reset all allowed devices for concurrent playback
- Supported version (v3):
POST/service-accounts/{service_account_key}/duplicate-blocks/players/reset