Restore users data from backup
Restore users data from file
- application/octet-stream
Request Body
- file binary required
Zip file with device settings
- 200
- 400
- 401
Imported data statistics
- application/json
- Schema
- Example (from schema)
- Example
Schema
statistic object[]
array with info from different db tables
count integertotal count of items
table_name stringdescribes from which table the given info is
{
"statistic": [
{
"count": 10,
"table_name": "identifiers"
}
]
}
{
"statistic": [
{
"count": 10,
"table_name": "identifiers"
}
]
}
- Wrong file
- Importing troubles
- application/json
- Schema
- Example (from schema)
Schema
error object
object containing info about error
code stringPossible values: [
invalid_authentication
,permission_denied
,not_valid
,system_error
]Error code
message stringError message
data object
Did not pass validation parameters. Can be represented as an object, which can include field names, arrays, query parameters etc.
param stringextended info on error
{
"error": {
"code": "not_valid",
"message": "Data validation error",
"data": {
"param": "must be an string"
}
}
}
Please log in
- application/json
- Schema
- Example (from schema)
- Example
Schema
error object
object containing info about error
code stringPossible values: [
invalid_authentication
,permission_denied
,not_valid
,system_error
]Error code
message stringError message
data object
Did not pass validation parameters. Can be represented as an object, which can include field names, arrays, query parameters etc.
param stringextended info on error
{
"error": {
"code": "not_valid",
"message": "Data validation error",
"data": {
"param": "must be an string"
}
}
}
{
"error": {
"code": "invalid_authentication",
"message": "Log In"
}
}