This endpoint returns all the backups of the specified realm that have been made.
Host | Authentication |
---|---|
pocket.realms.minecraft.net | XBL 3.0 |
GET /worlds/{id}/backups
{id} is the specific id of the realm.
Headers
Authorization: {token}
- {token} is your xbox live tokenClient-Version: {version}
- {version} is the version of the clientUser-Agent: {agent}
- {agent} is one of theseIf any backups exist, the server will return an array with each backup. You can loop through these.
Example Response
{
"backups": [
{
"backupId": "ogNOWtdZyKfaJvwO4SS7nt3JzOVOQ2HW",
"lastModifiedDate": 1523827627000,
"size": 1648576,
"metadata": {
"game_difficulty" :"1",
"name": "lukeeey21's Realm",
"description": "",
"game_mode": "0",
"world_type": "NORMAL"
}
}
]
}
I havent tested but i assume if there are no backups then it will return
{
"backups": []
}