Delete one device's text style override. This is the cleanup half of per-device preferences: a browser whose local storage is cleared can no longer find its own row, so without a way to delete rows by hand they accumulate for ever. Acts on the caller's own space and can only ever delete the caller's own row.
Input
application/jsondeviceId
string
Required
No description available.
maxLength: 64 bytesOutput
application/jsondeleted
boolean
Optional
No description available.
error
string
Optional
A stable machine code the client branches on — add codes, never rename them. `no-such-device` is NOT an error the player should see as a failure: deleting a row that is already gone got them what they wanted.
not-authenticated, no-such-device, delete-failedmessage
string
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"deviceId"
],
"properties": {
"deviceId": {
"type": "string",
"maxLength": 64
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [],
"properties": {
"error": {
"type": "string",
"description": "A stable machine code the client branches on — add codes, never rename them. `no-such-device` is NOT an error the player should see as a failure: deleting a row that is already gone got them what they wanted.",
"knownValues": [
"not-authenticated",
"no-such-device",
"delete-failed"
]
},
"deleted": {
"type": "boolean"
},
"message": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"description": "Delete one device's text style override. This is the cleanup half of per-device preferences: a browser whose local storage is cleared can no longer find its own row, so without a way to delete rows by hand they accumulate for ever. Acts on the caller's own space and can only ever delete the caller's own row."
}