Add values to a specific set. Attempting to add values to a set that does not exist will result in an error.
Input
Encoding
application/jsonname
string
Required
Name of the set to add values to
values
array
Required
Array of string values to add to the set
maxLength: 1000 itemsminLength: 1 itemsTry 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",
"values"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the set to add values to"
},
"values": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 1000,
"minLength": 1,
"description": "Array of string values to add to the set"
}
}
},
"encoding": "application/json"
},
"description": "Add values to a specific set. Attempting to add values to a set that does not exist will result in an error."
}