List Backups

This endpoint returns all the backups of the specified realm that have been made.

Host Authentication
pocket.realms.minecraft.net XBL 3.0

Constructing the request

GET /worlds/{id}/backups

{id} is the specific id of the realm.

Headers


Response

If 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": []
}