Fetch Runtime Controls Data
POST/fetchRuntimeControlsData
This API is used to fetch runtime analytics data from SSM.
The Authorization
must have Bearer
followed by Token
.
Mandatory params:
analyticsid
OR analyticsname
,
attributes
- runtime control params.
Sample : For this query - select * from users where manager = ${manager} and username = ${username}
"attributes":{
"manager":"4",
"username":"johndoe"
}
Optional params:
max
,
offset
,
loggedinuser
Request
Path Parameters
- application/json
Body
attributes
object
Responses
- 200
Fetch Runtime Controls Data
Response Headers
Access-Control-Allow-Credentials
string
Access-Control-Allow-Origin
string
Cache-Control
string
Date
string
Expires
string
Pragma
string
Referrer-Policy
string
Server
string
Set-Cookie
string
Strict-Transport-Security
string
Transfer-Encoding
string
X-Content-Type-Options
string
X-Frame-Options
string
X-XSS-Protection
string
- application/json
- Schema
- Example (from schema)
- Fetch Runtime Controls Data
Schema
Array [
]
result
object[]
{
"displaycount": 1,
"errorCode": 0,
"msg": "Success",
"result": [
{
"FIRSTNAME": "John",
"USERNAME": "johndoe"
}
],
"total": 1
}
{
"displaycount": 1,
"errorCode": 0,
"msg": "Success",
"result": [
{
"FIRSTNAME": "John",
"USERNAME": "johndoe"
}
],
"total": 1
}