Verify Device Risk
Using this API will fetch the device risk.
Resource Informations
Name | Value |
---|---|
Requires authentication? | Yes |
Rate limited? | No |
Request
Request headers
Key | Value |
---|---|
Authorization | Bearer token |
Content-Type | application/json |
HTTP request URL for SSMS
POST https://{tenantId}.{hostname}/digitanium/v4/riskbits/verify
HTTP request URL for SHIFT
POST https://{hostname}/auth/realms/{tenantId}/kobilriskbits/resources-auth/verify
note
API requests must be made over https. Calls made over plain http will fail.
Parameters
No Parameter fields are required
Request body
Field Name | Type | Description |
---|---|---|
riskName | String | Name of the risk. |
platform | String | Mention the platform. |
Sample Request
{
"riskName" : "JBreak",
"platform" : "ios"
}
Response
Field Name | Type | Description |
---|---|---|
id | String | Unique riskbitId |
ratingLevel | String | Rating level of risk |
score | String | Score of the risk. |
risk | String | Risk name. |
riskAndroid | String | Android risk name. |
riskIOS | String | iOS risk name. |
operation | String | Risk operation name |
realmId | String | Tenant name |
Sample Response
[
{
"id": "34db8eb9-c1c4-4f14-a258-91eb9b9c37bf",
"ratingLevel": "E",
"score": "949-961",
"risk": "4.38",
"riskAndroid": "JBreak",
"riskIOS": "JBreak",
"operation": "OK",
"realmId": "demokc"
}
]
Response Status Information
Status Code | Status | Message |
---|---|---|
200 | OK | Successfully created. |
204 | No Content | No Content. |
401 | Unauthorized | HTTP 401 Unauthorized. |