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
- application/json
Body
analyticsid string
attributes
object
manager string
username string
loggedinuser string
max string
offset string
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
Referrer-Policy
string
Server
string
Set-Cookie
string
Strict-Transport-Security
string
X-Content-Type-Options
string
- application/json
- Schema
- Example (from schema)
- Fetch Runtime Controls Data
Schema
Array [
]
displaycount number
errorCode number
msg string
result
object[]
FIRSTNAME string
USERNAME string
total number
{
"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
}
Loading...