Storm docs logo
Search the docs.../
Explore Storm Products

Parameter Delete

Deletes a parameter configuration.

Request

PropertyValue
MethodDELETE
URL/api/server/settings/parameters/{parameterId}
Content-Typeapplication/json
AuthenticationBearer Token
Request
Code iconbash
curl -X DELETE "{BASE_URL}/api/server/settings/parameters/{parameterId}" \
  -H "Authorization: Bearer YOUR_TOKEN"

Path Parameters

ParameterTypeRequiredDescription
parameterIdintegerYesUnique identifier of the parameter
Request With Parameters
Code iconbash
curl -X DELETE "{BASE_URL}/api/server/settings/parameters/{parameterId}" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response Body

Parameter

ParameterTypeDescription
data.idintegerUnique identifier of the deleted parameter
data.attributes.name.valuestringParameter name
data.attributes.name.editablebooleanIndicates if the field can be modified
data.attributes.name.lockedBystringLocked by environment variable (if present)
data.attributes.value.valuestringParameter value
data.attributes.value.editablebooleanIndicates if the field can be modified
data.attributes.value.lockedBystringLocked by environment variable (if present)
messagestringResponse status message

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "attributes": {
      "name": {
        "editable": true,
        "value": "devpanel"
      },
      "value": {
        "editable": true,
        "value": "enabled"
      }
    },
    "id": 1
  },
  "meta": {
    "executionTime": 10,
    "generatedAt": 1771936637589
  },
  "message": "Parameter has been removed"
}

Error Response (4xx/5xx)

ParameterTypeDescription
messagestringHuman-readable error message
Parameter Not Found (404)
Code iconjson
{
  "message": "Parameter Entity not found"
}
Error Response
Code iconjson
{
  "message": "Error message"
}
Support Needed?

Create a free ticket and our support team will provide you necessary assistance.

Blog
Support
About us
Patents
Term of use
Privacy policy
Contact
©2026 Storm Streaming Media. All Rights Reserved.