REST Endpoint Reference
Here you can find the description and guidance of how Actions can be validated by using AuthenticAction service Rest API.
Validate Session
POST
/api/v1/validate
Validates the authenticated action. This request is usually made by the application backend to validate authenticity and correctness of the action requested by the client. A successful response specifies whether biometric and values were collected and matched and overall verification status of the Action.
Prerequisites:
An organization has been set in the AuthenticAction Service and you have been provided with the apiKey
(Organization API Key) to perform AuthenticAction validations.
A session for AuthenticAction was initiated by the client with the designated ironvest-session-id
.
Headers
apiKey*
string
Authentication token.
Request Body
cid*
String
Customer ID
csid*
String
Customer Session ID
userID*
String
User ID
additionalData*
Json
Activity related data. Example:
{
"sessionData":[{
"key":"amount",
"value":50,
"synonyms":["total"]}],
"action": "WireTransfer"
}
additionalData:sessionData*
Json list
List of form fields values, can be empty
additionalData:action*
String
Action name. Meaningful name for validation and presentation purposes.
isEnrollment
Bool
Supported starting version 2024-09-1 In case an active enrollment to biometrics is enforced, this flag indicates that the validate request is made in context of the enrollment and if the session is successful the user will be marked as enrolled.
Response
Last updated