Registration Process Flow

Following are the service’s endpoints to be implemented to complete the registration process.

1. Check Identity (ciamregsrvc/webRegistration/checkIdentity)

This endpoint checks whether the User is available in Cymmetri Database with following scenarios:

  • Check User in Cymmetri Database

  • Query the Cymmetri database using the user details.

  • If the user is found, initiate the login flow.

  • If the user is not found, proceed to the next step.

Else, user will be checked in the CBS with the keeping following scenarios in consideration

  • Query the Bank database using the user details.

  • If the user is found, trigger the registration flow.

  • Send an OTP (One-Time Password) to the user's registered email.

  • If the user is not found, proceed to the next step.

IF neither cymmetri nor bank holds this user, then the following action will be performed

  • send a response indicating invalid data/user does not exist.

checkIdentity

post
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitude location

Body
cardNumberstringOptional

string

Example: String
deviceIdstringRequired

string

Example: String
idstringOptional

string

Example: String
typestringOptional

string

Example: String
Responses
chevron-right
200

Success|Ok

*/*
post
/webRegistration/checkIdentity

2. Verify Email OTP (ciamregsrvc/webRegistration/VerifyEmailOtp)

Email OTP Verification Steps:

  • Sending Email OTP: Generate and send an OTP to the user’s email in the registration step.

  • Verifying Email OTP: When a user submits the OTP, it needs to be verified.

If Email OTP is Correct:

  • Move to the next step and send a mobile OTP.

If Email OTP is Incorrect:

  • Track attempts.

  • If the user reaches the maximum number of attempts allowed, block the user.

verifyOtp

post
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitude location

Body
emailstringOptional
expInMinuteinteger · int32Optional
mobilestringOptional
otpstringOptional
otpLengthinteger · int32Optional
refIdstringOptional
templatIdstringOptional
Responses
chevron-right
200

Success|Ok

*/*
post
/otp/verifyOtp

3. Resend OTP Email (ciamregsrvc/webRegistration/resendOtpEmail)

If the user does not receive the OTP, they can request to resend it.

resendOtpEmail

post
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired

Access Token

locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitude location

Responses
chevron-right
200

Success|Ok

*/*
post
/webRegistration/resendOtpEmail

4. Verify Mobile OTP(ciamregsrvc/webRegistration/VerifyMobileOtp)

Mobile OTP Verification Steps:

  • Sending Mobile OTP: Generate and send an OTP to the user’s mobile in the verify email OTP step.

  • Verifying Mobile OTP: When a user submits the OTP, it needs to be verified.

If Mobile OTP is Correct:

  • Proceed to the next step.

If Mobile OTP is Incorrect:

  • Track attempts.

  • If the user reaches the maximum number of attempts allowed, block the user.

VerifyEmailOtp

post
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired

Access Token

locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitudelocation

Body
emailOtpstringOptional
mobileOtpstringOptional
Responses
chevron-right
200

Success|Ok

*/*
post
/webRegistration/VerifyEmailOtp

5. Resend OTP Mobile (ciamregsrvc/webRegistration/resendOtpMobile)

If the user does not receive the OTP, they can request to resend it.

resendOtpMobile

post
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired

Access Token

locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitude location

Responses
chevron-right
200

Success|Ok

*/*
post
/webRegistration/resendOtpMobile

6. Get MFA LIST (ciamregsrvc/webRegistration/mfa/list)

Fetch all the available MFA factors.

MFA List

get
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired

Access Token

locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitude location

Responses
chevron-right
200

Success|Ok

*/*
get
/webRegistration/mfa/list

7. Authenticate User (ciamregsrvc/webRegistration/authenticateUser)

Authentication Steps:

  • Authenticate user with available MFA factors like credit card, debit card.

  • If the user entered correct details, proceed to the next step.

  • If a user entered wrong details and reaches the maximum number of attempts allowed, block the user.

authenticateUser

post
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired

Access Token

locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitude location

Body
authenticationTypestring · enumRequired

Authentication Type

Example: DEBIT_CARDPossible values:
cardNostringOptional
expiryMonthstringOptional
expiryYearstringOptional
mpinstringOptional
pinstringOptional
Responses
chevron-right
200

Success|Ok

*/*
post
/webRegistration/authenticateUser

8. Fetch existing User Id (ciamregsrvc/webRegistration/existingUserId)

Fetch user ID from the existing system (bank database if available).

existingUserId

get
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired

Access Token

locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitude location

Responses
chevron-right
200

Success|Ok

*/*
get
/webRegistration/existingUserId

9. Save user id (ciamregsrvc/webRegistration/saveuserid)

User can save a new user ID if it is not already in use.

saveUserIdIB

post
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired

Access Token

locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitude location

Body
passwordstringOptional

string

Example: String
userIdstringOptional

string

Example: String
Responses
chevron-right
200

Success|Ok

*/*
post
/webRegistration/saveuserid

10. Validate Password (ciamregsrvc/webRegistration/validatePassword)

· Validate if the password follows all the rules.

· If it does, move on to the next step.

· If it doesn't, the user needs to choose another password.

validatePassword

post
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired

Access Token

locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitude location

Body
passwordstringOptional

string

Example: String
userIdstringOptional

string

Example: String
Responses
chevron-right
200

Success|Ok

*/*
post
/webRegistration/validatePassword

11. Set Password: (ciamregsrvc/webRegistration/setIbPassword)

· The user can set a password that meets all the password policy requirements.

setUserIdPasswordForIb

post
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationstringRequired

Access Token

locLatitudestringOptional

Latitude location

locLongitudestringOptional

Longitudelocation

Body
customerIdstringOptional

string

Example: String
customerTypestringOptional

string

Example: String
emailstringOptional

string

Example: String
firstNamestringOptional

string

Example: String
genderstringOptional

string

Example: String
lastNamestringOptional

string

Example: String
middleNamestringOptional

string

Example: String
namestringOptional

string

Example: String
passwordstringRequired

string

Example: String
phoneNumberstringOptional

string

Example: String
registrationTypestringRequired

string

Example: String
viewOnlyRightsbooleanRequired

string

Responses
chevron-right
200

Success|Ok

*/*
post
/webRegistration/setIbPassword

Last updated