Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Get event

Focus mode
Get event - AWS Elemental Live

Get a list of the inputs in the specified event.

There is no explicit command to get the dynamic playlist. But you can get the event in order to get information about the dynamic playlist.

Get Event is useful for obtaining the IDs of the inputs in the dynamic playlist and for parsing for the order in which they are listed in the XML.

Get Event includes the status of each input in these tags:

  • active tag. Possible values are true and false.

  • status tag. Possible values are preprocessing, pending, running, postprocessing, complete.

  • active_input_id tag. Only the currently active input has this tag. For that input, the active tag and the input_ID specify the same value.

Get Event does not provide information about the prepare time or activate time on inputs on which you explicitly called Prepare with Specified Time or Activate with Specified Time. That information cannot be retrieved from Elemental Live; you must maintain the schedule outside of Elemental Live.

HTTP Request and Response

HTTP URL

GET http://<Live IP address>/live_events/<event ID>

Response

XML content consisting of one event element that contains:

  • Various general tags.

  • One or more input elements that each contain:

    • A unique ID tag.

    • A unique input_label tag (optional).

    • A status tag.

    • An input element: complete network_input or device_input or router_input or file_input.

    • A video_selector element.

    • An optional audio_selector element.

    • An optional caption_selector element.

  • Other elements relating to input.

  • Other elements relating to outputs.

Example

Request

This request gets the event with the ID 31.

GET http://10.4.136.92/live_events/31

Response

The event contains three inputs, with IDs 64, 98, 99, and with input_label tags “movie08E45_section_1”, “enigmatic_car_ad” and “best_trowel_ad”.

<?xml version="1.0" encoding="UTF-8"?> <live_event; href="/live_events/31" product="Elemental Live" version="2.25.0.12345"> <id>31</id> . . . <input> <active>false</active> <id>64</id> <input_label>movie08E45_section_1</input_label> <loop_source>false</loop_source> <status>pending</status> . . . <network_input> <id>4</id> . . . <uri>udp://10.0.0.1:5005</uri> </network_input> <video_selector> <id>2</id> . . . </video_selector> <audio_selector> <id>2</id> . . . </audio_selector> <input_info> . . . </input_info> </input> <input> <active>true</active> <id>98</id> <input_label>enigmatic_car_ad</input_label> <loop_source>false</loop_source> <status>pending</status> . . . </input> <input> <active>false</active> <id>99</id> <input_label>best_trowel_ad</input_label> <loop_source>false</loop_source> <status>pending</status> . . . </input> <active_input_id>98</active_input_id> <loop_all_inputs>true</loop_all_inputs> <status>running</status> . . . </live_event>

On this page

PrivacySite termsCookie preferences
© 2025, Amazon Web Services, Inc. or its affiliates. All rights reserved.