# coding: utf-8
from __future__ import absolute_import
from bitmovin_api_sdk.common import BaseApi, BitmovinApiLoggerBase
from bitmovin_api_sdk.common.poscheck import poscheck_except
from bitmovin_api_sdk.models.custom_data import CustomData
from bitmovin_api_sdk.models.response_envelope import ResponseEnvelope
from bitmovin_api_sdk.models.response_error import ResponseError
[docs]class CustomdataApi(BaseApi):
@poscheck_except(2)
def __init__(self, api_key, tenant_org_id=None, base_url=None, logger=None):
# type: (str, str, str, BitmovinApiLoggerBase) -> None
super(CustomdataApi, self).__init__(
api_key=api_key,
tenant_org_id=tenant_org_id,
base_url=base_url,
logger=logger
)
[docs] def get_custom_data_by_encoding_id_and_webhook_id(self, encoding_id, webhook_id, **kwargs):
# type: (string_types, string_types, dict) -> CustomData
"""'Encoding Finished' Webhook Custom Data for a specific Encoding
:param encoding_id: Id of the encoding
:type encoding_id: string_types, required
:param webhook_id: Id of the webhook
:type webhook_id: string_types, required
:return: Webhook custom data
:rtype: CustomData
"""
return self.api_client.get(
'/notifications/webhooks/encoding/encodings/{encoding_id}/finished/{webhook_id}/customData',
path_params={'encoding_id': encoding_id, 'webhook_id': webhook_id},
type=CustomData,
**kwargs
)
[docs] def get_custom_data_by_webhook_id(self, webhook_id, **kwargs):
# type: (string_types, dict) -> CustomData
"""'Encoding Finished' Webhook Custom Data
:param webhook_id: Id of the webhook
:type webhook_id: string_types, required
:return: Webhook custom data
:rtype: CustomData
"""
return self.api_client.get(
'/notifications/webhooks/encoding/encodings/finished/{webhook_id}/customData',
path_params={'webhook_id': webhook_id},
type=CustomData,
**kwargs
)