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

Parameter Update

Updates an existing parameter configuration.

Request

PropertyValue
MethodPUT
URL/api/server/settings/parameters/{parameterId}
Content-Typeapplication/json
AuthenticationBearer Token
Request
Code iconbash
curl -X PUT "{BASE_URL}/api/server/settings/parameters/{parameterId}" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"key": "value"}'

Path Parameters

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

Request Body

ParameterTypeRequiredDescription
data.attributes.namestringNoParameter name
data.attributes.valuestringNoParameter value
Request Body
Code iconjson
{
  "data": {
    "attributes": {
      "name": "name1",
      "value": "value1"
    }
  }
}

Response Body

Parameter

ParameterTypeDescription
data.idintegerUnique identifier of the 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": "name1"
      },
      "value": {
        "editable": true,
        "value": "value1"
      }
    },
    "id": 0
  },
  "meta": {
    "executionTime": 33,
    "generatedAt": 1771936623127
  },
  "message": "New Parameter has been updated."
}

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.