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
analyticsidstring
Example:
82
attributes
object
managerstring
Example:
4
usernamestring
Example:
johndoe
loggedinuserstring
Example:
admin
maxstring
Example:
10
offsetstring
Example:
0
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 [
]
displaycountnumber
Example:
1
errorCodenumber
Example:
0
msgstring
Example:
Success
result
object[]
FIRSTNAMEstring
Example:
John
USERNAMEstring
Example:
johndoe
totalnumber
Example:
1
{
"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
}