Skip to main content

UserRbaSettingsApi

MethodHTTP requestDescription
deleteUserLocationsUsingDELETEDELETE /api/web/v1/users/{userid}/userlocationsDelete user location history
getUserRbaSettingsUsingGETGET /api/web/v1/users/{userid}/userrbasettingsGet user risk-based authentication settings
ipLocationFromIpAddressUsingPOSTPOST /api/web/v1/iplocationsCreate IP location
listUserExpectedLocationsUsingGETGET /api/web/v1/users/{userid}/expectedlocationsList expected locations for a user
listUserLocationsUsingGETGET /api/web/v1/users/{userid}/userlocationsGet user location history
setUserExpectedLocationsUsingPUTPUT /api/web/v1/users/{userid}/expectedlocationsSet expected locations for a user
updateUserRbaSettingsUsingPUTPUT /api/web/v1/users/{userid}/userrbasettingsUpdate user risk-based authentication settings

deleteUserLocationsUsingDELETE

deleteUserLocationsUsingDELETE(userid, requestBody)

Delete user location history

Delete one or more entries from a user's location history. Caller requires the USERRBASETTINGS:REMOVE permission.

Parameters

NameTypeDescriptionNotes
useridStringThe UUID of the user whose location history is to be updated.
requestBodyList<String>

Return type

null (empty response body)

Authorization

AdminAPIAuthentication

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Successful-
400Bad Request-
401Access denied-
403Forbidden-
404Not Found-
409Conflict-

getUserRbaSettingsUsingGET

UserRbaSettings getUserRbaSettingsUsingGET(userid)

Get user risk-based authentication settings

Get the user risk-based authentication settings for the specified user. Caller requires the USERRBASETTINGS:VIEW permission.

Example

Parameters

NameTypeDescriptionNotes
useridStringThe UUID of the user whose RBA settings will be retrieved.

Return type

UserRbaSettings

Authorization

AdminAPIAuthentication

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Successful-
400Bad Request-
401Access denied-
403Forbidden-
404Not Found-
409Conflict-

ipLocationFromIpAddressUsingPOST

IpLocation ipLocationFromIpAddressUsingPOST(ipLocation)

Create IP location

Gets IP location information for an IP address. The IP location can be used to create an ExpectedLocation. Caller requires the USERRBASETTINGS:ADD permission.

Example

Parameters

NameTypeDescriptionNotes
ipLocationIpLocation

Return type

IpLocation

Authorization

AdminAPIAuthentication

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Successful-
400Bad Request-
401Access denied-
403Forbidden-
404Not Found-
409Conflict-

listUserExpectedLocationsUsingGET

UserExpectedLocations listUserExpectedLocationsUsingGET(userid)

List expected locations for a user

Lists the expected locations for the specified user. Caller requires the USERRBASETTINGS:VIEW permission.

Example

Parameters

NameTypeDescriptionNotes
useridStringThe UUID of the user whose expected locations will be returned.

Return type

UserExpectedLocations

Authorization

AdminAPIAuthentication

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Successful-
400Bad Request-
401Access denied-
403Forbidden-
404Not Found-
409Conflict-

listUserLocationsUsingGET

List<UserLocation> listUserLocationsUsingGET(userid)

Get user location history

Get the location history of the specified user. Caller requires the USERRBASETTINGS:VIEW permission.

Example

Parameters

NameTypeDescriptionNotes
useridStringThe UUID of the user whose location history is to be retrieved.

Return type

List<UserLocation>

Authorization

AdminAPIAuthentication

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Successful-
400Bad Request-
401Access denied-
403Forbidden-
404Not Found-
409Conflict-

setUserExpectedLocationsUsingPUT

setUserExpectedLocationsUsingPUT(userid, expectedLocation)

Set expected locations for a user

Sets the list of expected locations for the specified user. Caller requires the USERRBASETTINGS:EDIT permission.

Example

Parameters

NameTypeDescriptionNotes
useridStringThe UUID of the user whose expected locations will be updated.
expectedLocationList<ExpectedLocation>

Return type

null (empty response body)

Authorization

AdminAPIAuthentication

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Successful-
400Bad Request-
401Access denied-
403Forbidden-
404Not Found-
409Conflict-

updateUserRbaSettingsUsingPUT

updateUserRbaSettingsUsingPUT(userid, userRbaSettings)

Update user risk-based authentication settings

Update the user risk-based authentication settings for the specified user. Caller requires the USERRBASETTINGS:EDIT permission.

Example

Parameters

NameTypeDescriptionNotes
useridStringThe UUID of the user whose RBA settings will be updated.
userRbaSettingsUserRbaSettings

Return type

null (empty response body)

Authorization

AdminAPIAuthentication

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status codeDescriptionResponse headers
200Successful-
400Bad Request-
401Access denied-
403Forbidden-
404Not Found-
409Conflict-