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

Server Identity Settings Update

Updates server identity settings.

Request

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

Request Body

ParameterTypeRequiredDescription
data.attributes.serverNamestringNoServer display name
data.attributes.hostNamestringNoServer hostname
data.attributes.groupNamestringNoServer group name
Request Body
Code iconjson
{
  "data": {
    "attributes": {
      "serverName": "Server 2",
      "hostName": "stormdev2.web-anatomy.com",
      "groupName": "Premise"
    }
  }
}

Response Body

Identity Settings

ParameterTypeDescription
data.attributes.serverName.valuestringServer display name
data.attributes.serverName.editablebooleanIndicates if the field can be modified
data.attributes.serverName.lockedBystringLocked by environment variable (if present)
data.attributes.hostName.valuestringServer hostname
data.attributes.hostName.editablebooleanIndicates if the field can be modified
data.attributes.hostName.lockedBystringLocked by environment variable (if present)
data.attributes.groupName.valuestringServer group name
data.attributes.groupName.editablebooleanIndicates if the field can be modified
data.attributes.groupName.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": {
      "serverName": {
        "editable": true,
        "value": "name"
      },
      "hostName": {
        "editable": true,
        "value": "host"
      },
      "groupName": {
        "editable": true,
        "value": "group"
      }
    }
  },
  "meta": {
    "executionTime": 27,
    "generatedAt": 1764850757128
  },
  "message": "Identity Settings have been updated"
}

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.