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

Parameter Create

Creates a new parameter configuration.

Request

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

Request Body

ParameterTypeRequiredDescription
namestringYesParameter name
valuestringYesParameter value
Request Body
Code iconjson
{
  "name": "name",
  "value": "value"
}

Response Body

Parameter

ParameterTypeDescription
data.idintegerUnique identifier of the created 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": "name"
      },
      "value": {
        "editable": true,
        "value": "value"
      }
    },
    "id": 4
  },
  "meta": {
    "executionTime": 43,
    "generatedAt": 1771936598801
  },
  "message": "New Parameter has been added."
}

Error Response (4xx/5xx)

ParameterTypeDescription
messagestringHuman-readable error message
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.