### System Settings Management Source: https://eapis.central.wildmoka.com/docs APIs for retrieving system settings, features, and configurations. ```APIDOC ## GET /settings/system ### Description Get system settings. ### Method GET ### Endpoint /settings/system ``` -------------------------------- ### Live Management Source: https://eapis.central.wildmoka.com/docs APIs for managing live streams, including finding, creating, retrieving, and updating their state and assignments. ```APIDOC ## GET /lives ### Description Find active Lives. ### Method GET ### Endpoint /lives ``` ```APIDOC ## POST /lives ### Description Creation of a Live. ### Method POST ### Endpoint /lives ``` ```APIDOC ## GET /lives/{liveId} ### Description Get a Live by ID. ### Method GET ### Endpoint /lives/{liveId} ``` ```APIDOC ## POST /lives/{liveId}/changeStateAsync ### Description Update of an existing Live State (Asynchronous). ### Method POST ### Endpoint /lives/{liveId}/changeStateAsync ``` ```APIDOC ## POST /lives/{liveId}/assignToProfiles ### Description Assign Live to Profiles. ### Method POST ### Endpoint /lives/{liveId}/assignToProfiles ``` ```APIDOC ## POST /lives/{liveId}/addDecoration ### Description Add decorations to a Live. ### Method POST ### Endpoint /lives/{liveId}/addDecoration ``` ```APIDOC ## POST /lives/{liveId}/changeDecorationState ### Description Change decorations State in Live. ### Method POST ### Endpoint /lives/{liveId}/changeDecorationState ``` -------------------------------- ### Decorator Management API Source: https://eapis.central.wildmoka.com/docs Endpoints for managing decorators, which are visual elements like videos, images, or text that can be applied to clips or live streams. ```APIDOC ## Decorator Management ### Find Decorators **Description**: Retrieves a list of available decorators. **Method**: GET **Endpoint**: `/decorators` ``` -------------------------------- ### Webhook Registrations Source: https://eapis.central.wildmoka.com/docs APIs for managing webhook registrations, including listing, creating, updating, and deleting them. ```APIDOC ## GET /webhooks ### Description List webhooks. ### Method GET ### Endpoint /webhooks ``` ```APIDOC ## POST /webhooks ### Description Webhook creation and update. ### Method POST ### Endpoint /webhooks ``` ```APIDOC ## POST /webhooks/{subscriptionName}/delete ### Description Webhook deletion. ### Method POST ### Endpoint /webhooks/{subscriptionName}/delete ``` -------------------------------- ### Profile Management API Source: https://eapis.central.wildmoka.com/docs Endpoints for managing profiles that can be applied to objects like events or live streams. ```APIDOC ## Profile Management ### Find Profiles **Description**: Retrieves a list of available profiles. **Method**: GET **Endpoint**: `/profiles` ``` -------------------------------- ### Custom Sources Management API Source: https://eapis.central.wildmoka.com/docs Endpoints for managing custom video sources, which can be VOD assets or other external event or live sources from cloud storage or external systems. ```APIDOC ## Custom Sources Management ### List Sources **Description**: Retrieves a list of custom sources. **Method**: GET **Endpoint**: `/external_sources` ### Get Source by ID **Description**: Retrieves a specific custom source by its ID. **Method**: GET **Endpoint**: `/external_sources/{source_id}` ### Get Source by its external_source id ID **Description**: Retrieves a specific custom source using its external source ID. **Method**: GET **Endpoint**: `/external_sources/ext:{external_source_id}` ### Import Asset from Source **Description**: Imports an asset from a specified source. **Method**: POST **Endpoint**: `/external_sources/{source_id}/imports` ### Import Asset from Source (using external ID) **Description**: Imports an asset from a specified source using its external ID. **Method**: POST **Endpoint**: `/external_sources/ext:{external_source_id}/imports` ### Get Import Status **Description**: Retrieves the status of an asset import. **Method**: GET **Endpoint**: `/external_sources/{source_id}/imports/{imported_file_id}/status` ### Get Import Status (using external ID) **Description**: Retrieves the status of an asset import using the external source ID. **Method**: GET **Endpoint**: `/external_sources/ext:{external_source_id}/imports/{imported_file_id}/status` ``` -------------------------------- ### Stream Management API Source: https://eapis.central.wildmoka.com/docs Endpoints for managing live video streams, including their input configurations, encoding profiles, and ingestion options. ```APIDOC ## Stream Management ### List streams **Description**: Retrieves a list of available streams. **Method**: GET **Endpoint**: `/streams` ### Get Stream by ID **Description**: Retrieves a specific stream by its ID. **Method**: GET **Endpoint**: `/streams/{stream_id}` ### Get Available Transcoding Profiles **Description**: Retrieves a list of available transcoding profiles for streams. **Method**: GET **Endpoint**: `/streams/available_transcoding_profiles` ``` -------------------------------- ### Entities API Source: https://eapis.central.wildmoka.com/docs APIs for retrieving entity data from the system, including listing, filtering, and retrieving specific entities and their related information. ```APIDOC ## POST /entities ### Description List entities with flexible filtering. ### Method POST ### Endpoint /entities ``` ```APIDOC ## GET /entities/{entity_id} ### Description Get a single entity by ID. ### Method GET ### Endpoint /entities/{entity_id} ``` ```APIDOC ## GET /entities/topics ### Description List available entity topics. ### Method GET ### Endpoint /entities/topics ``` ```APIDOC ## GET /entities/context_filter_keys ### Description List available context filter keys. ### Method GET ### Endpoint /entities/context_filter_keys ``` ```APIDOC ## GET /entities/context_filter_keys/{filter_key} ### Description List values for a context filter key. ### Method GET ### Endpoint /entities/context_filter_keys/{filter_key} ``` -------------------------------- ### Templates Management API Source: https://eapis.central.wildmoka.com/docs Endpoints for managing templates, which define publication endpoints and customizations for clips or live streams. ```APIDOC ## Templates Management ### Find Templates **Description**: Retrieves a list of available templates. **Method**: GET **Endpoint**: `/templates` ``` -------------------------------- ### Event Management API Source: https://eapis.central.wildmoka.com/docs Endpoints for managing events, which define time ranges on a stream and can include schedule actions. Events have states and can be associated with live streams for automated publishing. ```APIDOC ## Event Management ### Find Events **Description**: Retrieves a list of events. **Method**: GET **Endpoint**: `/events` ### Creation of an Event **Description**: Creates a new event. **Method**: POST **Endpoint**: `/events` ### Get an Event by ID **Description**: Retrieves a specific event by its ID. **Method**: GET **Endpoint**: `/events/{eventId}` ### Update of an Event **Description**: Updates an existing event. **Method**: POST **Endpoint**: `/events/{eventId}` ### Update of an existing Event State (Asynchronous) **Description**: Asynchronously updates the state of an existing event. **Method**: POST **Endpoint**: `/events/{eventId}/changeStateAsync` ### Assign Event to Profiles **Description**: Assigns an event to specified profiles. **Method**: POST **Endpoint**: `/events/{eventId}/assignToProfiles` ### Delete an Event by ID **Description**: Deletes an event by its ID. **Method**: POST **Endpoint**: `/events/{eventId}/delete` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.