Retrieve information about a realm rules engine
GEThttps://demo.openremote.io/api/master/rules/info/realm/:realm
Retrieve information about a realm rules engine
Request
Path Parameters
realm stringrequired
Header Parameters
Authorization string
X-Forwarded-Proto string
X-Forwarded-Host string
Responses
- default
default response
- application/json
- Schema
- Example (auto)
Schema
statusstring
Possible values: [STOPPED
, RUNNING
, ERROR
]
compilationErrorCountint32
executionErrorCountint32
{
"status": "STOPPED",
"compilationErrorCount": 0,
"executionErrorCount": 0
}
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
- nodejs
- java
- python
- ruby
- csharp
- go
- php
- powershell
- CURL
curl -L 'https://demo.openremote.io/api/master/rules/info/realm/:realm' \
-H 'Authorization: Bearer <token>'
ResponseClear