This repository was archived by the owner on Sep 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Sunti edited this page Mar 31, 2019
·
9 revisions
-
user_uuid
is the unique identifier for a user account in the game. -
device_uuid
is the unique identifier for a device. -
name
is the new name for changing a device's name.
/public # The endpoint every user has access to
/<string:uuid> # The device's uuid
/info # Get information about a device -> device.serialize
/ping # Ping a device -> device.powered_on
/private # The endpoint only the owner has access to
/<string:uuid> # The device's uuid
/info # Get private information about the device -> device.serialize
/power # Turn the device on/off
/name # Change the name of the device
/remove # Delete a device
/all # Get a list of all devices
/create # Create a device
-
user_uuid
is the unique identifier for a user account in the game. -
device_uuid
is the unique identifier for a device. -
file_uuid
is the unique identifier for a file of a device. -
filename
is for creating and updating a file. -
content
is also for creating and updating a file.
/<string:device> # Endpoint that doesn't require a file uuid
/<string:uuid> # Endpoint that requires uuid
/info # Get information about a file
/update # Update a file
/remove # Delete a file
/all # Get all files of a device
/create # Create a new file