Get Riskbits
Using this API, will return the list of riskbit details for the riskbitId provided in the request.
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
GET https://{tenantId}.{hostname}/digitanium/v4/riskbits/{riskbitid}
HTTP request URL for SHIFT
GET https://{hostname}/auth/realms/{tenantId}/kobilriskbits/resources-auth/{riskbitid}
note
API requests must be made over https. Calls made over plain http will fail.
Parameters
No Parameter fields are required
Request body
No request body fields are required
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": "fa8975fc-a3b6-42f4-85d6-1107ec5fe864",
"ratingLevel": "A",
"score": "986-999",
"risk": "0.80",
"riskAndroid": "",
"riskIOS": "",
"operation": "none",
"realmId": "demokc"
}
Response Status Information
| Status Code | Status | Message |
|---|---|---|
| 200 | OK | Successfully created. |
| 204 | No Content | No Content. |
| 401 | Unauthorized | HTTP 401 Unauthorized. |