Delete an entire set. Attempting to delete a set that does not exist will result in an error.
Input
Encoding
application/jsonname
string
Required
Name of the set to delete
Output
Encoding
application/jsonErrors
SetNotFound
set with the given name does not exist 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": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the set to delete"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "SetNotFound",
"description": "set with the given name does not exist"
}
],
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "Delete an entire set. Attempting to delete a set that does not exist will result in an error."
}