Lists the live outputs of a live event.
GET https://{{api-endpoint}}/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaservices/{accountName}/liveEvents/{liveEventName}/liveOutputsIn this article:
URI Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
liveEventName |
path | True | string |
The name of the live event, maximum length is 32. Regex pattern: |
accountName |
path | True | string | The RMS account name. |
resourceGroupName |
path | True | string | The name of the resource group within the Azure subscription. |
subscriptionId |
path | True | string | The unique identifier for a Microsoft Azure subscription. |
api-version |
query | True | string |
The version of the API to be used with the client request. Required for compatibility; any value accepted; no effect. |
$filter |
query | string |
[No-op in RMS] Restricts the set of items returned. |
|
$orderby |
query | string |
[No-op in RMS] Specifies the key by which the result collection should be ordered. |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK | LiveOutputListResult | OK. The request has succeeded. |
| Other Status Codes | ErrorResponse | Detailed error information. |
Examples
Lists all live outputs for a live event.
Sample Request
GET https://{{api-endpoint}}/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mrg-resourcegroup/providers/Microsoft.Media/mediaservices/default/liveEvents/liveEvent1/liveOutputs?api-version=2022-11-01Sample Response
Status code: 200
{
"value": [
{
"properties": {
"description": "myOutputAsset",
"assetName": "sampleAsset",
"archiveWindowLength": "PT5M",
"manifestName": "testmanifest",
"hls": {
"fragmentsPerTsSegment": 1
},
"outputSnapTime": 0,
"created": "2025-09-09T10:06:17.2126768Z",
"lastModified": "2025-09-09T10:06:17.2126768Z",
"provisioningState": "Succeeded",
"resourceState": "Running"
},
"systemData": {
"createdBy": "system",
"createdByType": "Application",
"createdAt": "2025-09-09T10:06:17.2126768Z",
"lastModifiedBy": "system",
"lastModifiedByType": "Application",
"lastModifiedAt": "2025-09-09T10:06:17.2126768Z"
},
"id": "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mrg-resourcegroup/providers/Microsoft.Media/mediaservices/default/liveEvents/liveEvent1/liveOutputs/liveOutput1",
"name": "LiveOutput1",
"type": "Microsoft.Media/mediaservices/liveOutputs"
},
{
"properties": {
"description": "",
"assetName": "asset1",
"archiveWindowLength": "PT5M",
"manifestName": "testmanifest",
"hls": {
"fragmentsPerTsSegment": 1
},
"outputSnapTime": 0,
"created": "2025-09-09T10:12:46.3586704Z",
"lastModified": "2025-09-09T10:12:46.3586704Z",
"provisioningState": "Succeeded",
"resourceState": "Running"
},
"systemData": {
"createdBy": "system",
"createdByType": "Application",
"createdAt": "2025-09-09T10:12:46.3586704Z",
"lastModifiedBy": "system",
"lastModifiedByType": "Application",
"lastModifiedAt": "2025-09-09T10:12:46.3586704Z"
},
"id": "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mrg-resourcegroup/providers/Microsoft.Media/mediaservices/default/liveEvents/liveEvent1/liveOutputs/liveOutput2",
"name": "LiveOutput2",
"type": "Microsoft.Media/mediaservices/liveOutputs"
},
{
"properties": {
"description": "",
"assetName": "asset2",
"archiveWindowLength": "PT5M",
"manifestName": "testmanifest",
"outputSnapTime": 0,
"created": "2025-09-09T10:14:15.713014Z",
"lastModified": "2025-09-09T10:14:15.713014Z",
"provisioningState": "Succeeded",
"resourceState": "Running"
},
"systemData": {
"createdBy": "system",
"createdByType": "Application",
"createdAt": "2025-09-09T10:14:15.713014Z",
"lastModifiedBy": "system",
"lastModifiedByType": "Application",
"lastModifiedAt": "2025-09-09T10:14:15.713014Z"
},
"id": "/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mrg-resourcegroup/providers/Microsoft.Media/mediaservices/default/liveEvents/liveEvent1/liveOutputs/liveOutput3",
"name": "LiveOutput3",
"type": "Microsoft.Media/mediaservices/liveOutputs"
}
]
}