Backups
Backup details
Retrieves information about the specified backup
GET
/api/client/servers/{server}/backups/{backup}Authorization
ClientToken AuthorizationBearer <token>
Client API key (generated at /account/api)
In: header
Path Parameters
server*string
Server identifier (short 8-character ID)
backup*string
Backup UUID
Response Body
application/json
curl -X GET "https://pterodactyl.file.properties/api/client/servers/1a7ce997/backups/904df120-a66f-4375-a4ae-40eedbeae630" \ -H "Authorization: Bearer ptlc_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \ -H "Accept: application/json"{
"object": "backup",
"attributes": {
"uuid": "904df120-a66f-4375-a4ae-40eedbeae630",
"is_successful": true,
"is_locked": false,
"name": "Quick Backup",
"ignored_files": [],
"checksum": "sha1:7c20d6a269b441a9dfd044e3f8ad13d77c09c83af8832d29ad603084a9a63726",
"bytes": 114402862,
"created_at": "2020-06-13T05:21:01+01:00",
"completed_at": "2020-06-13T05:21:04+01:00"
}
}