Description
This function lists the account's backup files.
Examples
cPanel or Webmail Session URL
https://hostname.example.com:2083/cpsess##########/execute/Backup/list_backups
LiveAPI PHP Class
$cpanel
=
new
CPANEL();
$Backup_list_backups
=
$cpanel
->uapi(
'Backup'
,
'list_backups'
);
LiveAPI Perl Module
my
$cpliveapi
= Cpanel::LiveAPI->new();
my
$Backup_list_backups
=
$cpliveapi
->uapi(
'Backup'
,
'list_backups'
,
);
cPanel Template Toolkit
[% data = execute( 'Backup', 'list_backups' ); %]
[% FOREACH q = data %]
<
p
>
[% q %]
</
p
>
[% END %]
Command Line
uapi --user=username Backup list_backups
|
Output (JSON)
{
"messages": null,
"errors": null,
"status": 1,
"metadata": {
"transformed": 1,
"cnt": 1
},
"data": [
"2014-12-02"
]
}
Parameters
This function does not accept parameters.
Returns
Return
|
Type
|
Description
|
Possible values
|
Example
|
data
|
array
|
An array of the account's backup files.
|
A comma-separated list of dates in YYYY-MM-DD format, where:
- YYYY represents the year.
- MM represents the month.
- DD represents the date.
|
2014-12-02
|