Skip to main content
POST
/
io.pocketenv.sandbox.restoreBackup
Restore a backup of a sandbox
curl --request POST \
  --url https://api.pocketenv.io/xrpc/io.pocketenv.sandbox.restoreBackup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "backupId": "<string>"
}
'
{
  "error": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
backupId
string
required

The backup ID to restore.

Response

OK