Get Ids of of the space auto-cleaning reports
Returns the list of Ids of space auto-cleaning reports. The list is sorted descending by start time of an auto-cleaning run (the newest report is first).
Path parameters
| Parameter | Type & Description |
|---|---|
| id required | string The Id of a space. |
Query parameters
| Parameter | Type & Description |
|---|---|
| offset | integer Allows to skip N first report Ids. |
| limit | integer Allows to limit the number of returned report Ids up to N last reports. By default, all report Ids will be returned. |
| index | string Allows to list the report Ids starting from the specific report. |
Request Examples
onepanel-rest-cli -u onepanel:$PASSPHRASE --host https://$HOST:9443 getProviderSpaceAutoCleaningReports id=$SPACE_ID offset=5 limit=10 index=1234148561abcdef
Responses
The list of Ids of space auto-cleaning reports.
| Property | Type & Description |
|---|---|
ids array of strings The list of Ids of space auto-cleaning reports. | |
Example
{
"ids": [
"x7It3cpgNgLZ8RwOrOoW",
"Q1boCClpCS5mUNhM7YCy"
]
}Unauthorized request.
Forbidden request.
Internal server error.
| Property | Type & Description | ||||||
|---|---|---|---|---|---|---|---|
error object Object describing an error.
| |||||||
Example
{
"error": {
"id": "badValueString",
"details": {
"key": "name"
},
"description": "Bad value: provided \"name\" must be a string."
}
}Services needed to fulfill this request are not running.