GET /callhome/endPoints/list
Use this method to return information about all archives that have been collected for the managed devices.
Authentication
Authentication with username and password is required.
Request URL
GET https://{management_server_IP}/callhome/endPoints/list
Query parameters
None
Request body
None
Response codes
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
500 | Internal Server Error | An internal error occurred. A descriptive error message is returned in the response body. |
Response body
Attributes | Type | Description | ||
---|---|---|---|---|
chassisName | String | Name of the managed device (regardless of the type) or the UUID if the device is not managed | ||
collectDate | String | Timestamp when the archive file was created | ||
eventID | String | ID of the event that generated archive file | ||
fileName | String | Name of the archive file | ||
id | String | Counter | ||
uid | String | UID of the FFDC archive file |
The following example is returned if the request is successful.
[{
"chassisName": "9BB59256A8B111E19F0EF3DD1922EE5B",
"collectDate": "2015-03-04T11:58:04Z"
"eventID": "40040201",
"fileName": "8721_A1G_06D7374_CMM_20150304_065557.tgz",
"id": "1",
"uid": "9BB59256A8B111E19F0EF3DD1922EE5B/40040201/8721_A1G_06D7374_CMM_20150304_065557.tgz",
},
{
"chassisName": "9BB59256A8B111E19F0EF3DD42643BC ",
"collectDate": "2015-08-19T18:37:19Z",
"eventID": "40040202",
"fileName": "8721_HC1_06NTTY8_CMM_20150819_103641.tgz",
"id": "2",
"uid": "9BB59256A8B111E19F0EF3DD42643BC/40040202/8721_HC1_06NTTY8_CMM_20150819_103641.tgz"
}]
Give documentation feedback