Navigation
Table of Contents
Guide That Contains This Content
[+] Expand All
[-] Collapse All
Related Documentation
- Junos Space
- Get an Incident by Incident ID
- Get Incident by Customer Tracking Number
- Export a JMB in the HTML or XML Format
- Upload Core Files for an Incident
- Download all Attachments of an Incident
- Download Log Files and JMB of an Incident
- Upload Attachment to Incident by Using SCP
- Upload Attachment to Incident by Using HTTP
- Incident Management REST API Overview
Export the Summary of an Incident to Excel
Use this API to export summary of incidents generated in Junos Space Service Now to an Excel file.
URI
/api/juniper/servicenow/incident-management/incidents/exportIncident SummaryToExcel (HTTP method = POST)
Consumes
- application/vnd.juniper.servicenow.incident-management.incidents. exportIncidentsSummaryToExcel+xml;version=1
- application/vnd.juniper.servicenow.incident-management.incidents. exportIncidentsSummaryToExcel+json;version=1
Request Elements
Element | Type | Description |
---|---|---|
Incidents | Incidents | Collection of incidents for which summary is to be exported |
incident | incident | An incident for which summary is to be exported |
id | Integer | ID of the incident |
Produces
application/octet-stream
Response Elements
None
Sample Input
Sample XML Input
<exportIncidentsSummaryToExcel> <incidents> <incident> <id>40380</id> </incident> </incidents> </exportIncidentsSummaryToExcel>
Sample JSON Input
{ "exportIncidentsSummaryToExcel": { "incidents": { “incident” : { “id” : 40380 } } } }
Related Documentation
- Junos Space
- Get an Incident by Incident ID
- Get Incident by Customer Tracking Number
- Export a JMB in the HTML or XML Format
- Upload Core Files for an Incident
- Download all Attachments of an Incident
- Download Log Files and JMB of an Incident
- Upload Attachment to Incident by Using SCP
- Upload Attachment to Incident by Using HTTP
- Incident Management REST API Overview