Skip to main content
PATCH
/
api
/
system
/
name
Update system name
curl --request PATCH \
  --url http://aris.local/api/system/name \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Mountain View Home"
}
'
{
  "success": true,
  "name": "Mountain View Home"
}

Authorizations

Authorization
string
header
required

Session token or API token

Body

application/json
name
string
required

Friendly name for the system

Required string length: 1 - 50
Example:

"Mountain View Home"

Response

Name updated successfully

success
boolean
Example:

true

name
string
Example:

"Mountain View Home"