Skip to main content
Version: 1.3.0

Update a realm ruleset

PUT 

https://demo.openremote.io/api/master/rules/realm/:id

Update a realm ruleset

Request

Path Parameters

    id int64required

Header Parameters

    Authorization string
    X-Forwarded-Proto string
    X-Forwarded-Host string

Body

    idint64
    versionint64
    createdOndate-time
    lastModifieddate-time
    namestringrequired

    Possible values: >= 3 characters and <= 255 characters

    enabledboolean
    rulesstring
    langstringrequired

    Possible values: [JAVASCRIPT, GROOVY, JSON, FLOW]

    meta

    object

    statusstring

    Possible values: [READY, DEPLOYED, COMPILATION_ERROR, VALIDITY_PERIOD_ERROR, EXECUTION_ERROR, LOOP_ERROR, DISABLED, PAUSED, EXPIRED, REMOVED, EMPTY]

    errorstring
    realmstring
    accessPublicReadboolean

Responses

default response

Schema

    any

Authorization: oauth2

name: openidtype: oauth2flows: {
  "clientCredentials": {
    "tokenUrl": "/auth/realms/master/protocol/openid-connect/token",
    "refreshUrl": "/auth/realms/master/protocol/openid-connect/token",
    "scopes": {
      "profile": "profile"
    }
  },
  "authorizationCode": {
    "authorizationUrl": "/auth/realms/master/protocol/openid-connect/auth",
    "tokenUrl": "/auth/realms/master/protocol/openid-connect/token",
    "refreshUrl": "/auth/realms/master/protocol/openid-connect/token",
    "scopes": {
      "profile": "profile"
    }
  }
}
curl -L -X PUT 'https://demo.openremote.io/api/master/rules/realm/:id' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{
"id": 0,
"version": 0,
"createdOn": "2024-07-29T15:51:28.071Z",
"lastModified": "2024-07-29T15:51:28.071Z",
"name": "string",
"enabled": true,
"rules": "string",
"lang": "JAVASCRIPT",
"meta": {},
"status": "READY",
"error": "string",
"realm": "string",
"accessPublicRead": true
}'
Request Collapse all
Base URL
https://demo.openremote.io/api/master
Auth
Parameters
— pathrequired
— header
— header
— header
Body
{
  "id": 0,
  "version": 0,
  "createdOn": "2024-07-29T15:51:28.071Z",
  "lastModified": "2024-07-29T15:51:28.071Z",
  "name": "string",
  "enabled": true,
  "rules": "string",
  "lang": "JAVASCRIPT",
  "meta": {},
  "status": "READY",
  "error": "string",
  "realm": "string",
  "accessPublicRead": true
}
ResponseClear

Click the Send API Request button above and see the response here!