Gets a live output.
GET https://{{api-endpoint}}/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Media/mediaservices/{accountName}/liveEvents/{liveEventName}/liveOutputs/{liveOutputName}In this article:
URI Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
liveOutputName |
path | True | string | Name of the live output to create under the specified live event. Becomes the last segment of the resource ID and must be unique within the parent Live Event. Use a URL-safe name. |
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. |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK | LiveOutput | OK. The request has succeeded. |
| Other Status Codes | ErrorResponse | Detailed error information. |
Examples
Gets a live output.
Sample Request
GET https://{{api-endpoint}}/subscriptions/0a6ec948-5a62-437d-b9df-934dc7c1b722/resourceGroups/mrg-groupname/providers/Microsoft.Media/mediaservices/default/liveEvents/liveEvent1/LiveOutputs/liveOutput1?api-version=2022-11-01Sample Response
Status code: 200
{
"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/liveOutput1",
"name": "liveOutput1",
"type": "Microsoft.Media/mediaservices/liveOutputs"
}