Live Inputs
List live inputs
stream.live_inputs.list(LiveInputListParams**kwargs) -> LiveInputListResponse
GET/accounts/{account_id}/stream/live_inputs
Retrieve a live input
stream.live_inputs.get(strlive_input_identifier, LiveInputGetParams**kwargs) -> LiveInput
GET/accounts/{account_id}/stream/live_inputs/{live_input_identifier}
Create a live input
stream.live_inputs.create(LiveInputCreateParams**kwargs) -> LiveInput
POST/accounts/{account_id}/stream/live_inputs
Update a live input
stream.live_inputs.update(strlive_input_identifier, LiveInputUpdateParams**kwargs) -> LiveInput
PUT/accounts/{account_id}/stream/live_inputs/{live_input_identifier}
Delete a live input
stream.live_inputs.delete(strlive_input_identifier, LiveInputDeleteParams**kwargs)
DELETE/accounts/{account_id}/stream/live_inputs/{live_input_identifier}
Live InputsOutputs
List all outputs associated with a specified live input
stream.live_inputs.outputs.list(strlive_input_identifier, OutputListParams**kwargs) -> SyncSinglePage[Output]
GET/accounts/{account_id}/stream/live_inputs/{live_input_identifier}/outputs
Create a new output, connected to a live input
stream.live_inputs.outputs.create(strlive_input_identifier, OutputCreateParams**kwargs) -> Output
POST/accounts/{account_id}/stream/live_inputs/{live_input_identifier}/outputs
Update an output
stream.live_inputs.outputs.update(stroutput_identifier, OutputUpdateParams**kwargs) -> Output
PUT/accounts/{account_id}/stream/live_inputs/{live_input_identifier}/outputs/{output_identifier}
Delete an output
stream.live_inputs.outputs.delete(stroutput_identifier, OutputDeleteParams**kwargs)
DELETE/accounts/{account_id}/stream/live_inputs/{live_input_identifier}/outputs/{output_identifier}