Regenerate an EOL Report
Use this API to regenerate an EOL report.
URI
https://[host]/api/juniper/serviceinsight/eolreport-management/eolreports/{id} /regenerateReport (HTTP method = POST)
URI Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id | Integer | Yes | ID of the EOL report to be regenerated |
Consumes
application/vnd.juniper.serviceinsight.eolreport-management.regeneratereport+xml; version=1
application/vnd.juniper.serviceinsight.eolreport-management.regeneratereport+json; version=1
Request Elements
Element | Type | Description |
---|---|---|
emails | emails | Collection of e-mail IDs to which the regenerated EOL report must be sent |
String | E-mail ID to which the regenerated EOL report must be sent | |
domainId | Integer | ID of the domain to which the EOL report belongs This is an optional element. The value provided in this element is ignored if the value is invalid or a domainId other than the current domainId is provided. |
Produces
application/vnd.juniper.space.task-management.task+xml;version=1;
application/vnd.juniper.space.task-management.task+json;version=1;
Response Elements
Element | Type | Description |
---|---|---|
href | String | Link to the regenerate EOL report task |
id | Integer | ID of the task |
Sample Input
Sample XML Input
<regenerateeolreport> <emails> <email>servicenow@juniper.com</email> </emails> </regenerateeolreport>
Sample XML Input
{ " regenerateeolreport": { "emails": { "email": "servicenow@juniper.com" } } }
Sample Output
Sample XML Output
<taskhref=”/api/space/job-management/jobs/655360”> <id>655360</id> </task>
Sample XML Output
{ "task": { "@href": "/api/space/job-management/jobs/655360", "id": 655360 } }