Response
Indicates whether the call was successful. success
if successful, error
if not.
An array of objects, each representing an application and its associated backups.
The ID of the application.
The name of the application (defaults to app_id if name is unavailable).
An array of backup objects for the application.
The ID of the application.
The ID of the user who created the backup.
The size of the backup in MB.
The timestamp when the backup was created.
{
"status": "success",
"response": [
{
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"app_name": "v111d4af8cd74272a284831fbae14a8v",
"backups": [
{
"id": "backup123",
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"author_id": "993591427428790342",
"size": "10.24 MB",
"date": "2025-08-14T19:58:00Z"
},
{
"id": "backup456",
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"author_id": "993591427428790342",
"size": "15.36 MB",
"date": "2025-08-13T12:00:00Z"
}
]
},
{
"app_id": "v222e5bf9de84383b395942fcbf25b9w",
"app_name": "v222e5bf9de84383b395942fcbf25b9w",
"backups": [
{
"id": "backup789",
"app_id": "v222e5bf9de84383b395942fcbf25b9w",
"author_id": "993591427428790342",
"size": "20.48 MB",
"date": "2025-08-12T10:00:00Z"
}
]
}
]
}
Error Responses
Indicates whether the call was successful. error
if not successful.
The error code indicating the reason for failure. Possible values:
UNAUTHORIZED
: The user is not authenticated or lacks sufficient permissions.
{
"status": "error",
"code": "UNAUTHORIZED"
}