Manage your Account Holders and Applications using Fusion APIs. In this article you learn about:
After you create an Application, it moves through various states. Each state provides crucial information about your Application.
accountHolderID
, individualID
) is assigned.There might be instances where the Account Holder you are trying to create already exists with the same
Vector |
. In such cases, the authority to approve your Application lies solely with the IFI. IFI configures the matching criteria and approves or rejects the Application accordingly.
Edit Application details like Account Holder’s name, date of birth, gender, and so on, using the /applications
API. The ID
of the Application whose details you are editing is required to call the API.
|
ifiID
: Required. Unique identifier of the IFI.applicationID
: Required. Unique identifier of the Application.firstName
: Optional. Account Holder’s first name.lastName
: Optional. Account Holder’s last name.middleName
: Optional. Account Holder’s middle name.mothersMaidenName
: Optional. Account Holder’s mother’s maiden name.gender
: Optional. Account Holder’s gender. Example: “male”, “female”.dob
: Account Holder’s date of birth details.year
: Optional. Year of birth in YYYY format.month
: Required. Month of birth in MM format. Value must be between 1 and 12day
: Required. Day of birth in DD format. Value cannot be more than the number of days in the specified month. For example, if the month of birth is June, the day must be 30 or less.profilePicURL
: Optional. Link to Account Holder’s profile image.Salutation
: Optional. Salutation using which the Account Holder is addressed. Example: Mr., Mrs., Ms.In the following example, we change the year of birth for Account Holder John Doe.
|
When you create an Application for a new Account Holder, applicationID
(unique identifier), is generated. Use the applicationID
to get details of your Application. The response displays Application/Applicant details and the current status of your Application.
|
ifiID
: Unique identifier of the IFI.applicationID
: Unique identifier of the Application.In the following example, we fetch the details with Application ID 145437. The "status": "PROCESSING" shows that the Application is being processed.
|
There are two ways to fetch details for an Account Holder— using Account Holder ID or Vectors.
If you have Account Holder’s ID (individualID
), use the /accountHolders
API to fetch their details.
|
ifiID
: Required. Unique identifier of the IFI.accountHolderID
: Required. Unique identifier of the Account Holder. Same as individuaID
.In the following example, we fetch Account Holder’s details using Account Holder's ID (individualID
):
|
Vectors are unique identifiers, like phone and email, used to identify an Account Holder. Use the /individualByVector
API and pass the Account Holder’s Vector as path parameter to fetch their details.
|
ifiID
: Required. Unique identifier of the IFI.vectorType
: Required. Type of Vector using which details are being fetched. Allowed values: p for phone number; e for email.vectorValue
: Required. Value based on Vector type specified. For example, if vectorType
is p, specify Account Holder’s phone number; if vectorType
is e, specify email ID.In the following example, we fetch Account Holder’s details using phone number:
|
|