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://$OP_PANEL_HOST:9443 getProviderSpaceAutoCleaningReports id=$SPACE_ID offset=5 limit=10 index=1234148561abcdef
Responses
The list of Ids of space auto-cleaning reports.
The list of Ids of space auto-cleaning reports.
Example
{
"ids": [
"x7It3cpgNgLZ8RwOrOoW",
"Q1boCClpCS5mUNhM7YCy"
]
}Unauthorized request.
Forbidden request.
Internal server error.
error object (ErrorDetails) Object describing an error.
Object describing an error.
String identifying the error type. Does not change between error instances.
Human readable error description. May contain information specific to given error instance.
Details about the error instance. The object schema is specific to each error type.
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.