User Risk Profile
Record Risk Profile
Record Risk Profile Event
POST
https://wimikabankservice.azurewebsites.net/api/UserRiskProfile
This request enables the recording of a risk profile event for a user. This feature captures relevant information and detailed events that may impact the user's risk profile.
Headers
Name
Type
Description
x-wimika-session-id*
String
Wimika session unique Identifier.
Request Body
Name
Type
Description
bankAccountIds*
String
It contains an array of Bank account unique identifiers.
suggestedRestrictions*
String
It contains an array of restriction suggestions to be taken into action.
riskEventType*
String
Type of risk event.
detail*
String
Detailed information regarding the type of risk event detected.
{
"transactionId": "DEBIT_af123mn657"
}
Example Request
curl \
-H 'Accept: application/JSON' \
-H 'x-wimika-session-id: 08303832' \
-b '{
"bankAccountIds": [
"45878838",
"123465757"
],
"riskEventType": "UnencryptedWifiConnection",
"detail": "Wifi Connection lacks an encrypted channel",
"suggestedRestrictions": [
"deny-debits",
"mask-transaction-details"
}' \
-X POST https://wimikabankservice.azurewebsites.net/api/UserRiskProfile
Last updated
Was this helpful?