Description: Retrieve PlayoutMetrics
URL: http://{your-server-url}/api/v1/appspace/playoutmetrics
Method: GET
Token Required: True
content-type: application/json or content-type: application/xml
token: {token}
Portal Administrator, Account Administrator, Account Owner, Content Administrator
Parameter | Type | Nullable | Description |
---|---|---|---|
page | string | True | page number |
startdate | string | True | format: yyyyMMddhhmm |
enddate | string | True | format: yyyyMMddhhmm |
playerids | string | True | comma separated values |
applicationids | string | True | comma separated values |
zoneids | string | True | comma separated values |
contentids | string | True | comma separated values |
fullplayout | string | True | true or false |
rpp | string | True | records per page, default = 50, max = 500 |
Example: http://{your-server-url}/api/v1/appspace/playoutmetrics?page=string&startdate=string&enddate=string
Type: Nexus.AppSpace.Service.Contract.Messages.PlayoutMetrics.PlayoutMetricsResponse
Parameter | Type |
---|---|
Response.PlayoutMetrics.Data | string |
Response.PlayoutContentPlayers.Data | string |
Response.PlayoutContentPlayers | Nexus.AppSpace.Service.Contract.Messages.PlayoutMetrics.PlayoutContentPlayers |
Response.PlayoutMetrics | Nexus.AppSpace.Service.Contract.Messages.PlayoutMetrics |
Response.PlayoutContents | Nexus.AppSpace.Service.Contract.Messages.PlayoutMetrics.PlayoutContents |
Response.PlayoutContents.Data | string |
Response.PlayoutContentMediaZones.Data | string |
Response.PlayoutContentApplications | Nexus.AppSpace.Service.Contract.Messages.PlayoutMetrics.PlayoutContentApplications |
Response.PlayoutContentApplications.Data | string |
Response.PlayoutContentSchedules | Nexus.AppSpace.Service.Contract.Messages.PlayoutMetrics.PlayoutContentSchedules |
Response.PlayoutContentSchedules.Data | string |
Response.PlayoutContentMediaZones | Nexus.AppSpace.Service.Contract.Messages.PlayoutMetrics.PlayoutContentMediaZones |
Response.PlayoutContentAComponents | Nexus.AppSpace.Service.Contract.Messages.PlayoutMetrics.PlayoutContentAComponents |
Response.PlayoutContentAComponents.Data | string |
<PlayoutMetricsResponse xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages.PlayoutMetrics" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <DebugMessage xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">String</DebugMessage> <Errors xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages"> <Error> <Code>String</Code> <Message>String</Message> <StackTrace>String</StackTrace> </Error> </Errors> <Status xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">Success</Status> <PlayoutContentAComponents> <Data>String</Data> </PlayoutContentAComponents> <PlayoutContentApplications> <Data>String</Data> </PlayoutContentApplications> <PlayoutContentMediaZones> <Data>String</Data> </PlayoutContentMediaZones> <PlayoutContentPlayers> <Data>String</Data> </PlayoutContentPlayers> <PlayoutContentSchedules> <Data>String</Data> </PlayoutContentSchedules> <PlayoutContents> <Data>String</Data> </PlayoutContents> <PlayoutMetrics> <Data>String</Data> <PlayoutMetricsArray xmlns:a="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO.PlayoutMetrics"> <a:PlayoutMetric> <a:ApplicationId>123</a:ApplicationId> <a:ComponentId>123</a:ComponentId> <a:ContentId>123</a:ContentId> <a:FullPlayout>true</a:FullPlayout> <a:Id>123</a:Id> <a:MediaZoneId>123</a:MediaZoneId> <a:PlayerId>123</a:PlayerId> <a:PlayoutEnd>2014-04-24T17:53:43.2152142Z</a:PlayoutEnd> <a:PlayoutStart>2014-04-24T17:53:43.2152142Z</a:PlayoutStart> <a:ScheduleId>123</a:ScheduleId> <a:Type>VideoWall</a:Type> </a:PlayoutMetric> </PlayoutMetricsArray> </PlayoutMetrics> </PlayoutMetricsResponse>
{ "DebugMessage":"String", "Errors":[ { "Code":"String", "Message":"String", "StackTrace":"String" } ], "Status":1, "PlayoutContentAComponents":{ "Data":"String" }, "PlayoutContentApplications":{ "Data":"String" }, "PlayoutContentMediaZones":{ "Data":"String" }, "PlayoutContentPlayers":{ "Data":"String" }, "PlayoutContentSchedules":{ "Data":"String" }, "PlayoutContents":{ "Data":"String" }, "PlayoutMetrics":{ "Data":"String", "PlayoutMetricsArray":[ { "ApplicationId":123, "ComponentId":123, "ContentId":123, "FullPlayout":true, "Id":123, "MediaZoneId":123, "PlayerId":123, "PlayoutEnd":"\/Date(1398362023215)\/", "PlayoutStart":"\/Date(1398362023215)\/", "ScheduleId":123, "Type":3 } ] } }