Retrieve Dashboard Tiles Data
POST/mobileDashboard
This API call can be used to fetch details like number of open userrequests, number of attestations, number of delegates, and number of pending approvals for a specific user.
The Authorization
must have Bearer
followed by Token
.
Mandatory params:
userName
Request
- multipart/form-data
Body
userName string
Responses
- 200
Mobile Dashboard
Response Headers
Date
string
Server
string
Set-Cookie
string
- application/json
- Schema
- Example (from schema)
- Mobile Dashboard
Schema
attestations
object
totalcount number
delegates
object
totalcount number
errorCode string
msg string
pendingrequests
object
highcount number
lowcount number
mediumcount number
totalcount number
userrequests
object
openrequestcount number
{
"attestations": {
"totalcount": 148
},
"delegates": {
"totalcount": 17
},
"errorCode": "0",
"msg": "successful",
"pendingrequests": {
"highcount": 272,
"lowcount": 43,
"mediumcount": 22,
"totalcount": 337
},
"userrequests": {
"openrequestcount": 317
}
}
{
"attestations": {
"totalcount": 148
},
"delegates": {
"totalcount": 17
},
"errorCode": "0",
"msg": "successful",
"pendingrequests": {
"highcount": 272,
"lowcount": 43,
"mediumcount": 22,
"totalcount": 337
},
"userrequests": {
"openrequestcount": 317
}
}
Loading...