Pterodactyl PHP SDK
  • Documentation
  • Basics
    • Installation
    • SDK initialization
  • API - Application
    • Users
    • Nodes
    • Nodes -> Allocations
    • Locations
    • Servers
    • Servers -> Databases
    • Nests
  • API - Client
    • Basic functions
    • Account
    • Server
    • Server -> Databases
    • Server -> File Manager
    • Server -> Schedules
    • Server -> Network (allocations)
    • Server -> Users
    • Server -> Backups
    • Server -> Startup
    • Server -> Settings
Powered by GitBook
On this page
  • Get backups
  • Create backup
  • Get backup details
  • Download backup
  • Delete backup
  1. API - Client

Server -> Backups

$client->client->server->backups

Get backups

$client->client->server->backups->paginate(string $serverIdentifier, int $page = 1);

Create backup

$client->client->server->backups->create(string $serverIdentifier, array $data);

Get backup details

$client->client->server->backups->details(string $serverIdentifier, string $backupUuid);

Download backup

$client->client->server->backups->download(string $serverIdentifier, string $backupUuid);

Delete backup

$client->client->server->backups->delete(string $serverIdentifier, string $backupUuid);
PreviousServer -> UsersNextServer -> Startup

Last updated 3 years ago