Create a Fund Account🔗
Bank Account🔗
Use the below endpoint to create a fund account of type bank_account
.
Handy Tips
- A new fund account is created if any combination of the following details is unique:
contact_id
,bank_account.name
,bank_account.ifsc
andbank_account.account_number
. - If all the above details match the details of an existing fund account, the API returns details of the existing fund account.
- You cannot edit the details of a fund account.
Request Parameters🔗
contact_id
mandatory-
string
This is the unique identifier linked to a contact. For example,cont_00000000000001
. account_type
mandatory-
string
The account type you want to link to the contact ID. Here it isbank_account
. bank_account
-
The contact's bank account details.
name
mandatorystring
Account holder's name. Name must be between 3 - 120 characters. This field is case-sensitive. Name cannot end with a special character, except.
. Supported characters:a-z
,A-Z
,0-9
,space
,’
,-
,_
,/
,(
,)
and ,.
. For example,Gaurav Kumar
.ifsc
mandatorystring
Beneficiary bank IFSC. Has to be 11 characters. Unique identifier of a bank branch. For example,HDFC0000053
.account_number
mandatorystring
Beneficiary account number. Between 5 and 35 characters. Supported characters:a-z
,A-Z
and0-9
. Beneficiary account number. For example,765432123456789
.
Response Parameters🔗
id
-
string
The unique identifier linked to the fund account. For example,fa_00000000000001
. entity
-
string
Here it will befund_account
. contact_id
-
string
The unique identifier linked to the contact. For example,cont_00000000000001
. account_type
-
string
The fund account type being created. Here it will bebank_account
. bank_account
-
The contact's bank account details.
ifsc
string
Beneficiary bank IFSC. For example,HDFC0000053
.bank_name
string
The contact's bank name. For example,HDFC
.name
string
Account holder's name. For example,Gaurav Kumar
.account_number
string
Beneficiary account number. For example,765432123456789
.
active
-
boolean
Possible values:true
: activefalse
: inactive
batch_id
-
string
This parameter is populated if the fund account was created as part of a bulk upload. For example,batch_00000000000001
. created_at
-
integer
Timestamp, in Unix, when the fund account was created. For example,1545320320
.
VPA (UPI ID)🔗
Use the below endpoint to create a fund account of type vpa
.
Handy Tips
- A new fund account is created if any combination of the following details is unique:
contact_id
andvpa.address
. - If all the above details match the details of an existing fund account, the API returns details of the existing fund account.
- You cannot edit the details of a fund account.
Request Parameters🔗
contact_id
mandatory-
string
This is the unique identifier linked to a contact. For example,cont_00000000000001
. account_type
mandatory-
string
The fund account type you want to link to the contact ID. Here it isvpa
. vpa
-
The contact's virtual payment address (VPA) details.
address
mandatorystring
Between 3 and 100 characters. Supported characters:a-z
,A-Z
,0-9
,.
,-
and one@
. The virtual payment address. For example,gauravkumar@exampleupi
.
Response Parameters🔗
id
-
string
The unique identifier linked to the fund account. For example,fa_00000000000001
. entity
-
string
Here, it will befund_account
. contact_id
-
string
The unique identifier linked to the contact. For example,cont_00000000000001
. account_type
-
string
The fund account type being created. Here, it will bevpa
. vpa
-
The contact's virtual payment address (VPA) details.
username
string
The username portion of the virtual payment address. For example,gaurav.kumar
.handle
string
The handle portion of the virtual payment address. For example,exampleupi
.address
string
The virtual payment address. For example,gaurav.kumar@exampleupi
.
active
-
boolean
The status of the fund account. Possible values:true
: activefalse
: inactive
batch_id
-
string
This parameter is populated if the fund account was created as part of a bulk upload. For example,batch_00000000000001
. created_at
-
integer
Timestamp, in Unix, when the fund account was created. For example,1545320320
.