Get All EOL Reports
Use this API to retrieve information about end-of-life (EOL) reports present in Junos Space Service Insight.
URI
https://[host]/api/juniper/serviceinsight/eolreport-management /eolreports (HTTP method = GET)
Consumes
None
Produces
- application/vnd.juniper.serviceinsight.eolreport.eolreports+xml;version=1
- application/vnd.juniper.serviceinsight.eolreport.eolreports+json;version=1
Response Elements
Element | Type | Description |
---|---|---|
uri | String | URI to the collection of EOL reports |
size | Integer | Number of records in the collection |
eolreport | eolreport | An EOL report |
uri | String | URI of the EOL report |
reportCreator | String | Username of the person who created the report |
deviceList | String | Devices for which the report is generated |
mailStatus | String | Indicates whether an e-mail was sent to users when the EOL report was generated |
reportName | String | EOL report name |
domainId | Integer | ID of the domain to which an EOL report belongs |
Response Status Code
Message | Description |
---|---|
204 No Content | No reports are available. |
Output
Example XML Output
<eolreports uri="/api/juniper/serviceinsight/eolreport-management/eolreports" size="1"> <eolreport uri="/api/juniper/serviceinsight/eolreport-management/eolreports/753665"> <reportCreator>super</reportCreator> <deviceList>elmo,re1-sur01.mx960.77.49</deviceList> <mailStatus>Mail not sent. SMTP server not configured for Service Insight</mailStatus> <reportName>SDKReport1</reportName> <domainId>10</domainId> </eolreport> </eolreports>
Example JSON Output
eolreports:{ uri:'/api/juniper/serviceinsight/eolreport-management/eolreports', size:1, eolreport:{ uri:'/api/juniper/serviceinsight/eolreport-management/eolreports/753665', reportcreator:'super', devicelist:'elmo,re1-sur01.mx960.77.49', mailstatus:'Mail not sent. SMTP server not configured for Service Insight', reportname:'SDKReport1' domainId:’10’ } }