Delete settings by key
Input
Encoding
application/jsonkeys
array
Required
No description available.
maxLength: 200 itemsminLength: 1 itemsscope
string
Required
No description available.
Output
Encoding
application/jsonTry 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": [
"keys",
"scope"
],
"properties": {
"keys": {
"type": "array",
"items": {
"type": "string",
"format": "nsid"
},
"maxLength": 200,
"minLength": 1
},
"scope": {
"type": "string",
"knownValues": [
"instance",
"personal"
]
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "Delete settings by key"
}