Summary
Description
Route
POST /device_management/device_backups
Roles
admin
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
options |
object |
yes |
- |
Copied to Clipboard
{
"options": {
"start": 1,
"limit": 2,
"sort": [],
"order": "ascending",
"entity": "entity1"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"options": {
"title": "options",
"$ref": "deviceManagerDoc#/definitions/options"
}
},
"required": [
"options"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
object |
- |
Copied to Clipboard
{
"entity": "entity1",
"total": 4,
"list": []
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"entity": {
"type": "string",
"examples": [
"entity1"
]
},
"total": {
"type": "integer",
"examples": [
4
]
},
"list": {
"type": "array",
"items": {}
}
}
}