Skip to content

deleteGJLevelList.php

Deletes a list from the server.

Parameters

ParameterExplanationRequired
accountIDThe list author's account IDYes
udidThe list author's UDIDYes
uuidThe list author's UUIDYes
gjp2The level author's GJP2Yes
listIDThe ID of the level being deletedYes
secretLevel Secret: Wmfv2898gc9Yes
gameVersion22
binaryVersion42

Response

Returns 1 if deleted, -1 if it failed or the list does not exist.

Example

Python

py
import requests

# With this code, DevExit is deleting the list with ID 414808
headers = {
    "User-Agent": ""
}

data = {
        "accountID": 173831, # DevExit's account ID
        "gjp2": "********", # This would be DevExit's password encoded with GJP2 encryption
        "listID": 414808,
        "secret": "Wmfv2898gc9"
}

req = requests.post("https://www.boomlings.com/database/deleteGJLevelList.php", data=data, headers=headers)
print(req.text)

Response

py
1