GET /fieldsGET /fields
a request to find all fields
{
"account.openMode": {
"choice": true,
"type": "string"
},
"account.operatedBy": {
"choice": true,
"type": "string"
},
"dob": {
"format": "date",
"type": "string"
},
"email": {
"format": "email",
"type": "string"
},
"fd.interestPaymentOption": {
"choice": true,
"type": "string"
},
"fd.maturityInstruction": {
"choice": true,
"type": "string"
},
"fd.renewalOption": {
"choice": true,
"type": "string"
},
"mobile": {
"pattern": "^\\+?[0-9]{1,3}?[0-9]{4,14}$",
"type": "string"
},
"nomination.method": {
"choice": true,
"type": "string"
},
"nomination.nominee.relationship": {
"choice": true,
"type": "string"
},
"otp": {
"pattern": "^[0-9]{6}$",
"type": "string"
},
"person.gender": {
"choice": true,
"type": "string"
},
"product.category": {
"choice": true,
"type": "string"
}
}GET /choicesGET /choices
a request to find all choices
GET /choices?meta=true
a request to find all choices with meta
{
"account.openMode": [
"solo",
"joint",
"minor"
],
"account.operatedBy": [
"former",
"anyone",
"jointly"
],
"fd.interestPaymentOption": [
"at_maturity",
"monthly",
"quarterly"
],
"fd.maturityInstruction": [
"close",
"renew",
"convert"
],
"fd.renewalOption": [
"full",
"principal"
],
"nomination.method": [
"successive",
"simultaneous"
],
"nomination.nominee.relationship": [
"son",
"daughter",
"spouse",
"partner",
"parent",
"sibling"
],
"person.gender": [
"male",
"female",
"other"
],
"product.category": [
"fd",
"sa"
]
}{
"account.openMode": {
"enum": true,
"values": [
"solo",
"joint",
"minor"
]
},
"account.operatedBy": {
"enum": true,
"values": [
"former",
"anyone",
"jointly"
]
},
"fd.interestPaymentOption": {
"enum": false,
"values": [
"at_maturity",
"monthly",
"quarterly"
]
},
"fd.maturityInstruction": {
"enum": true,
"values": [
"close",
"renew",
"convert"
]
},
"fd.renewalOption": {
"enum": true,
"values": [
"full",
"principal"
]
},
"nomination.method": {
"enum": true,
"values": [
"successive",
"simultaneous"
]
},
"nomination.nominee.relationship": {
"enum": false,
"values": [
"son",
"daughter",
"spouse",
"partner",
"parent",
"sibling"
]
},
"person.gender": {
"enum": true,
"values": [
"male",
"female",
"other"
]
},
"product.category": {
"enum": true,
"values": [
"fd",
"sa"
]
}
}GET /i18n/localesGET /i18n/locales?locale=en
a request to find translation for locale en
GET /i18n/locales?locale=hi
a request to find translation for locale hi
{
"choices.account.openMode.joint": "Joint",
"choices.account.openMode.minor": "Minor",
"choices.account.openMode.solo": "Solo",
"choices.fd.interestPaymentOption.at_maturity": "At Maturity",
"choices.fd.interestPaymentOption.monthly": "Monthly",
"choices.fd.interestPaymentOption.quarterly": "Quarterly",
"choices.fd.maturityInstruction.close": "Close",
"choices.fd.maturityInstruction.convert": "Convert",
"choices.fd.maturityInstruction.renew": "Renew",
"choices.nomination.method.simultaneous": "Simultaneous",
"choices.nomination.method.successive": "Successive",
"choices.nomination.nominee.relationship.daughter": "Daugher",
"choices.nomination.nominee.relationship.partner": "Partner",
"choices.nomination.nominee.relationship.sibling": "Sibling",
"choices.nomination.nominee.relationship.son": "Son",
"choices.nomination.nominee.relationship.spouse": "Spouse",
"choices.person.gender.female": "Female",
"choices.person.gender.male": "Male",
"choices.product.category.fd": "Fixed Deposit",
"choices.product.category.sa": "Savings Account"
}{
"choices.account.openMode.joint": "संयुक्त",
"choices.account.openMode.minor": "नाबालिग",
"choices.account.openMode.solo": "एकल",
"choices.fd.interestPaymentOption.at_maturity": "परिपक्वता पर",
"choices.fd.interestPaymentOption.monthly": "मासिक",
"choices.fd.interestPaymentOption.quarterly": "त्रैमासिक",
"choices.fd.maturityInstruction.close": "बंद करें",
"choices.fd.maturityInstruction.convert": "रूपांतरित करें",
"choices.fd.maturityInstruction.renew": "नवीनीकरण",
"choices.nomination.method.simultaneous": "समानांतर",
"choices.nomination.method.successive": "अनुक्रमिक",
"choices.nomination.nomineeRelationship.daughter": "पुत्री",
"choices.nomination.nomineeRelationship.partner": "साथी",
"choices.nomination.nomineeRelationship.sibling": "भाई/बहन",
"choices.nomination.nomineeRelationship.son": "पुत्र",
"choices.nomination.nomineeRelationship.spouse": "पति/पत्नी",
"choices.person.gender.female": "महिला",
"choices.person.gender.male": "पुरुष",
"choices.person.gender.other": "अन्य",
"choices.product.category.fd": "फिक्स्ड डिपॉजिट",
"choices.product.category.sa": "बचत खाता"
}GET /locations/statesGET /locations/states?country=IN&facility=branch
a request to find all states where a branch exists in IN (India)
{
"country": "IN",
"facility": "branch",
"states": [
"IN-MH",
"IN-DL"
]
}GET /locations/districtsGET /locations/districts?country=IN&facility=branch&state=IN-DL
a request to find all districts where a branch exists in country IN and state IN-DL
GET /locations/districts?country=IN&facility=branch&state=IN-MH
a request to find all districts where a branch exists in country IN and state IN-MH
{
"country": "IN",
"districts": [
"New Delhi"
],
"facility": "branch",
"state": "IN-DL"
}{
"country": "IN",
"districts": [
"Mumbai",
"Mumbai Suburban"
],
"facility": "branch",
"state": "IN-MH"
}GET /locations/citiesGET /locations/cities?country=IN&district=New Delhi&facility=branch&state=IN-DL
a request to find all cities where a branch exists in country IN, state IN-DL, and district New Delhi
GET /locations/cities?country=IN&district=Mumbai&facility=branch&state=IN-MH
a request to find all cities where a branch exists in country IN, state IN-MH, and district Mumbai
GET /locations/cities?country=IN&district=Mumbai Suburban&facility=branch&state=IN-MH
a request to find all cities where a branch exists in country IN, state IN-MH, and district Mumbai Suburban
{
"cities": [
"Delhi"
],
"country": "IN",
"district": "New Delhi",
"facility": "branch",
"state": "IN-DL"
}{
"cities": [
"Mumbai"
],
"country": "IN",
"district": "Mumbai",
"facility": "branch",
"state": "IN-MH"
}{
"cities": [
"Mumbai"
],
"country": "IN",
"district": "Mumbai Suburban",
"facility": "branch",
"state": "IN-MH"
}GET /branchesGET /branches?country=IN&pin=110001
a request to find all branches at pin 110001, country IN
GET /branches?country=IN&pin=400021
a request to find all branches at pin 400021, country IN
GET /branches?country=IN&pin=400052
a request to find all branches at pin 400052, country IN
GET /branches?city=Delhi&country=IN&district=New Delhi&state=IN-DL
a request to find all branches in city Delhi, district New Delhi, state IN-DL, country IN
GET /branches?city=Mumbai&country=IN&district=Mumbai Suburban&state=IN-MH
a request to find all branches in city Mumbai, district Mumbai Suburban, state IN-MH, country IN
GET /branches?city=Mumbai&country=IN&district=Mumbai&state=IN-MH
a request to find all branches in city Mumbai, district Mumbai, state IN-MH, country IN
{
"branches": [
{
"address": "209 - 214, Kailash Building, 26, Kasturba Gandhi Marg, New Delhi, Delhi",
"code": "3",
"ifsc": "HDFC0000003",
"name": "K G Marg"
}
]
}{
"branches": [
{
"address": "101-104 Tulsiani Chambers, Free Press Journal Marg, Nariman Point, Mumbai, Maharashtra",
"code": "1",
"ifsc": "HDFC0000001",
"name": "Nariman Pt - Tulsiani Chmbrs"
}
]
}{
"branches": [
{
"address": "Plot No 124, Viraj, S V Road, Khar West, Mumbai, Maharashtra",
"code": "2",
"ifsc": "HDFC0000002",
"name": "Khar West"
}
]
}{
"branches": [
{
"address": "209 - 214, Kailash Building, 26, Kasturba Gandhi Marg, New Delhi, Delhi",
"code": "3",
"ifsc": "HDFC0000003",
"name": "K G Marg"
}
]
}{
"branches": [
{
"address": "Plot No 124, Viraj, S V Road, Khar West, Mumbai, Maharashtra",
"code": "2",
"ifsc": "HDFC0000002",
"name": "Khar West"
}
]
}{
"branches": [
{
"address": "101-104 Tulsiani Chambers, Free Press Journal Marg, Nariman Point, Mumbai, Maharashtra",
"code": "1",
"ifsc": "HDFC0000001",
"name": "Nariman Pt - Tulsiani Chmbrs"
}
]
}GET /login/termsGET /login/terms
a request to get terms that must be accepted for login to success (terms are setup by client)
{
"terms": [
{
"documentUrl": "https://www.hdfcbank.com/personal/resources/privacy-policy",
"id": "1",
"summary": "I/we have read, understood, and hereby accept the Privacy Policy of HDFC Bank."
},
{
"content": "this is the content of the consent, can be a long text",
"id": "2",
"summary": "I/we hereby give consent (V.1.0) in relation to Requested Products"
}
]
}POST /login/authorizePOST /login/authorize
a request to authorize basis the credentials supplied by the user and the terms accepted
POST /login/tokenPOST /login/token
a request to get token with the correct OTP (challenge answer)
{
"otp": "123456",
"sessionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJQUDEyMzQ1IiwiZG9iIjoiMTk5MC0wMS0wMSIsIm1vYmlsZSI6Ijk4NzY1NDMyMTAiLCJpYXQiOjE1MTYyMzkwMjIsImV4cCI6MTUxNjIzOTAyMn0.kTVkTCr1iBJn2-1VLDR7Cvg2wf_diXp3zdxy6DTlQwM",
"expiresIn": 3600,
"refreshToken": "b7e02a14-7db8-45a2-993f-061a130d245b",
"tokenType": "Bearer"
}GET /my/info/profileGET /my/info/profile
a request to get my profile
{
"dob": "1990",
"email": "***om",
"mobile": "***10",
"name": "***oe",
"pan": "***4F"
}GET /my/info/accountsGET /my/info/accounts?currency=INR&permission=debit
a request to get my accounts
[
{
"accountId": "KfS9Kc2r3W-h",
"accountNo": "***12",
"currentBalance": {
"amount": "100000",
"currency": "INR"
},
"drawingLimit": {
"amount": "50000",
"currency": "INR"
},
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "IN",
"lines": [
"123 Main St",
"Apt 4B"
],
"pin": "400001",
"state": "IN-MH"
},
"dob": "1990",
"name": "***hn",
"order": 1,
"relationship": "son",
"sharePct": "100"
}
]
}
}
]POST /my/fd/calculatorPOST /my/fd/calculator
a request to calculate fd returns
{
"depositAmount": {
"amount": "10000",
"currency": "INR"
},
"interestPaymentOption": "monthly",
"productVariant": "withdrawable",
"tenure": "P1Y"
}{
"interestEarned": {
"amount": "1000",
"currency": "INR"
},
"maturityAmount": {
"amount": "15000",
"currency": "INR"
},
"maturityDate": "2026-01-01",
"roi": "10.5",
"startDate": "2023-01-01"
}POST /my/verifications/upi-vpaPOST /my/verifications/upi-vpa
a request to verify my UPI VPA jane@okhdfc
POST /my/verifications/upi-vpa
a request to verify my UPI VPA jane@paytm
POST /my/verifications/upi-vpa
a request to verify my UPI VPA john@okhdfc
POST /my/verifications/upi-vpa
a request to verify my UPI VPA john@paytm
{
"vpa": "jane@okhdfc"
}{
"reason": "urn:verification:vpa:name-mismatch",
"status": "failed"
}{
"vpa": "jane@paytm"
}{
"reason": "urn:verification:vpa:name-mismatch",
"status": "failed"
}{
"vpa": "john@okhdfc"
}{
"status": "success"
}{
"vpa": "john@paytm"
}{
"status": "success"
}POST /my/verifications/bank-accountPOST /my/verifications/bank-account
a request to verify my Bank Account 123456789000 HDFC000001
POST /my/verifications/bank-account
a request to verify my Bank Account 123456789000 SBI0009101
POST /my/verifications/bank-account
a request to verify my Bank Account 123456789001 HDFC000001
POST /my/verifications/bank-account
a request to verify my Bank Account 987654321001 SBI0009101
{
"accountNo": "123456789000",
"ifsc": "HDFC000001"
}{
"status": "success"
}{
"accountNo": "123456789000",
"ifsc": "SBI0009101"
}{
"status": "success"
}{
"accountNo": "123456789001",
"ifsc": "HDFC000001"
}{
"reason": "urn:verification:bank-account:name-mismatch",
"status": "failed"
}{
"accountNo": "987654321001",
"ifsc": "SBI0009101"
}{
"reason": "urn:verification:bank-account:name-mismatch",
"status": "failed"
}GET /my/productsGET /my/products
a request to get my products
[
{
"category": "fd",
"currency": "INR",
"variant": "withdrawable"
},
{
"category": "fd",
"currency": "INR",
"variant": "non_withdrawable"
},
{
"category": "sa",
"currency": "INR",
"variant": "regular"
},
{
"category": "sa",
"currency": "INR",
"variant": "womens"
}
]GET /my/products/fdGET /my/products/fd
a request to get my fd products
GET /my/products/fd?variant=withdrawable
a request to get my fd products for variant withdrawable
{
"products": [
{
"category": "fd",
"conditions": {
"depositAmountRange": {
"max": {
"inclusive": false,
"value": {
"amount": "1000000000",
"currency": "INR"
}
},
"min": {
"inclusive": true,
"value": {
"amount": "5000",
"currency": "INR"
}
}
},
"tenureRange": {
"max": {
"inclusive": false,
"value": "P10Y"
},
"min": {
"inclusive": true,
"value": "P7D"
}
}
},
"currency": "INR",
"eligibility": {
"ageRange": {
"max": {
"inclusive": false,
"value": 100
},
"min": {
"inclusive": true,
"value": 18
}
}
},
"options": {
"interestPaymentOptions": [
"at_maturity",
"monthly",
"quarterly"
],
"maturityInstructions": [
"close",
"renew"
]
},
"variant": "withdrawable"
},
{
"category": "fd",
"conditions": {
"depositAmountRange": {
"max": {
"inclusive": false,
"value": {
"amount": "1000000000",
"currency": "INR"
}
},
"min": {
"inclusive": true,
"value": {
"amount": "5000",
"currency": "INR"
}
}
},
"tenureRange": {
"max": {
"inclusive": false,
"value": "P10Y"
},
"min": {
"inclusive": true,
"value": "P7D"
}
}
},
"currency": "INR",
"eligibility": {
"ageRange": {
"max": {
"inclusive": false,
"value": 100
},
"min": {
"inclusive": true,
"value": 18
}
}
},
"options": {
"interestPaymentOptions": [
"at_maturity",
"monthly",
"quarterly"
],
"maturityInstructions": [
"close",
"renew"
]
},
"variant": "non_withdrawable"
}
]
}{
"products": [
{
"category": "fd",
"conditions": {
"depositAmountRange": {
"max": {
"inclusive": false,
"value": {
"amount": "1000000000",
"currency": "INR"
}
},
"min": {
"inclusive": true,
"value": {
"amount": "5000",
"currency": "INR"
}
}
},
"tenureRange": {
"max": {
"inclusive": false,
"value": "P10Y"
},
"min": {
"inclusive": true,
"value": "P7D"
}
}
},
"currency": "INR",
"eligibility": {
"ageRange": {
"max": {
"inclusive": false,
"value": 100
},
"min": {
"inclusive": true,
"value": 18
}
}
},
"options": {
"interestPaymentOptions": [
"at_maturity",
"monthly",
"quarterly"
],
"maturityInstructions": [
"close",
"renew"
]
},
"variant": "withdrawable"
}
]
}GET /my/products/saGET /my/products/sa
a request to get my sa products
GET /my/products/sa?variant=regular
a request to get my sa products for variant regular
{
"products": [
{
"category": "sa",
"conditions": {
"minBalance": {
"inclusive": true,
"value": {
"amount": "5000",
"currency": "INR"
}
}
},
"currency": "INR",
"eligibility": {
"ageRange": {
"max": {
"inclusive": false,
"value": 100
},
"min": {
"inclusive": true,
"value": 18
}
}
},
"options": {},
"variant": "regular"
},
{
"category": "sa",
"conditions": {
"minBalance": {
"inclusive": true,
"value": {
"amount": "5000",
"currency": "INR"
}
}
},
"currency": "INR",
"eligibility": {
"ageRange": {
"max": {
"inclusive": false,
"value": 18
},
"min": {
"inclusive": true,
"value": 0
}
},
"genders": [
"female"
]
},
"options": {},
"variant": "womens"
}
]
}{
"products": [
{
"category": "sa",
"conditions": {
"minBalance": {
"inclusive": true,
"value": {
"amount": "5000",
"currency": "INR"
}
}
},
"currency": "INR",
"eligibility": {
"ageRange": {
"max": {
"inclusive": false,
"value": 100
},
"min": {
"inclusive": true,
"value": 18
}
}
},
"options": {},
"variant": "regular"
}
]
}POST /my/formsPOST /my/forms
a request to submit a form for 1 fd and 1 sa
POST /my/forms
a request to submit a form for 2 fd and 2 sa
POST /my/forms
a request to submit a form for all fd
POST /my/forms
a request to submit a form for all sa
POST /my/forms
a request to submit a form for open_fd: joint, operated by anyone
POST /my/forms
a request to submit a form for open_fd: joint, operated by former
POST /my/forms
a request to submit a form for open_fd: joint, operated by jointly
POST /my/forms
a request to submit a form for open_fd: minor
POST /my/forms
a request to submit a form for open_fd: solo
POST /my/forms
a request to submit a form for open_fd: with inline nomination - minor nominee
POST /my/forms
a request to submit a form for open_fd: with inline nomination - one nominee
POST /my/forms
a request to submit a form for open_fd: with inline nomination, two nominees - simultaneous
POST /my/forms
a request to submit a form for open_fd: with inline nomination, two nominees - successive
POST /my/forms
a request to submit a form for open_fd: with replicate nomination
POST /my/forms
a request to submit a form for open_sa: joint, operated by anyone
POST /my/forms
a request to submit a form for open_sa: joint, operated by former
POST /my/forms
a request to submit a form for open_sa: joint, operated by jointly
POST /my/forms
a request to submit a form for open_sa: minor
POST /my/forms
a request to submit a form for open_sa: solo
POST /my/forms
a request to submit a form for open_sa: with inline nomination - minor nominee
POST /my/forms
a request to submit a form for open_sa: with inline nomination - one nominee
POST /my/forms
a request to submit a form for open_sa: with inline nomination, two nominees - simultaneous
POST /my/forms
a request to submit a form for open_sa: with inline nomination, two nominees - successive
POST /my/forms
a request to submit a form for open_sa: with replicate nomination
POST /my/forms
a request to submit a form for salary
POST /my/forms
a request to submit a form for single payment - CASH
POST /my/forms
a request to submit a form for single payment - CHEQUE
POST /my/forms
a request to submit a form for single payment - NET_BANKING
POST /my/forms
a request to submit a form for single payment - TRANSFER
POST /my/forms
a request to submit a form for single payment - UPI
POST /my/forms
a request to submit a form for with assigned account no
{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"id": "i-2",
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-2",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "joint",
"operatedBy": "former",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"id": "i-3",
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
},
{
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-4",
"instruction": "open_sa",
"openMode": "joint",
"operatedBy": "former",
"productVariant": "regular"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "2000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-2",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "joint",
"operatedBy": "former",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-3",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "joint",
"operatedBy": "anyone",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-4",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "joint",
"operatedBy": "jointly",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-5",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"minor": {
"customerId": "54321",
"type": "customer_id"
},
"openMode": "minor",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-6",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"nomination": {
"accountId": "2010000000122",
"type": "replicate"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-7",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-8",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"guardian": {
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"456 Elm St"
],
"pin": "400002",
"state": "MH"
},
"name": "John Doe"
},
"name": "Baby John",
"order": 1,
"relationship": "son"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-9",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son"
},
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"789 Oak St"
],
"pin": "400003",
"state": "MH"
},
"dob": "2005-01-01",
"name": "Baby Doe",
"order": 2,
"relationship": "daughter"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
},
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-10",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"nomination": {
"method": "simultaneous",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son",
"sharePct": "50"
},
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"789 Oak St"
],
"pin": "400003",
"state": "MH"
},
"dob": "2005-01-01",
"name": "Baby Doe",
"order": 2,
"relationship": "daughter",
"sharePct": "50"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "10000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
},
{
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-2",
"instruction": "open_sa",
"openMode": "joint",
"operatedBy": "former",
"productVariant": "regular"
},
{
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-3",
"instruction": "open_sa",
"openMode": "joint",
"operatedBy": "anyone",
"productVariant": "regular"
},
{
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-4",
"instruction": "open_sa",
"openMode": "joint",
"operatedBy": "jointly",
"productVariant": "regular"
},
{
"id": "i-5",
"instruction": "open_sa",
"minor": {
"customerId": "54321",
"type": "customer_id"
},
"openMode": "minor",
"productVariant": "regular"
},
{
"id": "i-6",
"instruction": "open_sa",
"nomination": {
"accountId": "2010000000122",
"type": "replicate"
},
"openMode": "solo",
"productVariant": "regular"
},
{
"id": "i-7",
"instruction": "open_sa",
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular"
},
{
"id": "i-8",
"instruction": "open_sa",
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"guardian": {
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"456 Elm St"
],
"pin": "400002",
"state": "MH"
},
"name": "John Doe"
},
"name": "Baby John",
"order": 1,
"relationship": "son"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular"
},
{
"id": "i-9",
"instruction": "open_sa",
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son"
},
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"789 Oak St"
],
"pin": "400003",
"state": "MH"
},
"dob": "2005-01-01",
"name": "Baby Doe",
"order": 2,
"relationship": "daughter"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular"
},
{
"id": "i-10",
"instruction": "open_sa",
"nomination": {
"method": "simultaneous",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son",
"sharePct": "50"
},
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"789 Oak St"
],
"pin": "400003",
"state": "MH"
},
"dob": "2005-01-01",
"name": "Baby Doe",
"order": 2,
"relationship": "daughter",
"sharePct": "50"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular"
},
{
"id": "i-11",
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "salary"
},
{
"accountId": "1234567890",
"id": "i-12",
"initialDeposit": {
"amount": "2500",
"currency": "INR"
},
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "2500.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "joint",
"operatedBy": "anyone",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "joint",
"operatedBy": "former",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "joint",
"operatedBy": "jointly",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"minor": {
"customerId": "54321",
"type": "customer_id"
},
"openMode": "minor",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"guardian": {
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"456 Elm St"
],
"pin": "400002",
"state": "MH"
},
"name": "John Doe"
},
"name": "Baby John",
"order": 1,
"relationship": "son"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"nomination": {
"method": "simultaneous",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son",
"sharePct": "50"
},
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"789 Oak St"
],
"pin": "400003",
"state": "MH"
},
"dob": "2005-01-01",
"name": "Baby Doe",
"order": 2,
"relationship": "daughter",
"sharePct": "50"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son"
},
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"789 Oak St"
],
"pin": "400003",
"state": "MH"
},
"dob": "2005-01-01",
"name": "Baby Doe",
"order": 2,
"relationship": "daughter"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"depositAmount": {
"amount": "1000",
"currency": "INR"
},
"id": "i-1",
"instruction": "open_fd",
"interestPaymentInstruction": {
"option": "at_maturity"
},
"maturityInstruction": {
"option": "close"
},
"nomination": {
"accountId": "2010000000122",
"type": "replicate"
},
"openMode": "solo",
"productVariant": "regular",
"tenure": "P1Y"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "1000.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-1",
"instruction": "open_sa",
"openMode": "joint",
"operatedBy": "anyone",
"productVariant": "regular"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-1",
"instruction": "open_sa",
"openMode": "joint",
"operatedBy": "former",
"productVariant": "regular"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"holders": [
{
"customerId": "12345",
"order": 1,
"type": "customer_id"
},
{
"customerId": "67890",
"order": 2,
"type": "customer_id"
}
],
"id": "i-1",
"instruction": "open_sa",
"openMode": "joint",
"operatedBy": "jointly",
"productVariant": "regular"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"instruction": "open_sa",
"minor": {
"customerId": "54321",
"type": "customer_id"
},
"openMode": "minor",
"productVariant": "regular"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"instruction": "open_sa",
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"guardian": {
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"456 Elm St"
],
"pin": "400002",
"state": "MH"
},
"name": "John Doe"
},
"name": "Baby John",
"order": 1,
"relationship": "son"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"instruction": "open_sa",
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"instruction": "open_sa",
"nomination": {
"method": "simultaneous",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son",
"sharePct": "50"
},
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"789 Oak St"
],
"pin": "400003",
"state": "MH"
},
"dob": "2005-01-01",
"name": "Baby Doe",
"order": 2,
"relationship": "daughter",
"sharePct": "50"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"instruction": "open_sa",
"nomination": {
"method": "successive",
"nominees": [
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"123 Main St"
],
"pin": "400001",
"state": "MH"
},
"dob": "2000-01-01",
"name": "Baby John",
"order": 1,
"relationship": "son"
},
{
"address": {
"city": "Mumbai",
"country": "India",
"lines": [
"789 Oak St"
],
"pin": "400003",
"state": "MH"
},
"dob": "2005-01-01",
"name": "Baby Doe",
"order": 2,
"relationship": "daughter"
}
],
"type": "inline"
},
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"instruction": "open_sa",
"nomination": {
"accountId": "2010000000122",
"type": "replicate"
},
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "salary"
}
],
"sections": []
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"initialDeposit": {
"amount": "2500",
"currency": "INR"
},
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": [
{
"amount": {
"amount": "2500.00",
"currency": "INR"
},
"id": "s-1",
"method": "cash",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"initialDeposit": {
"amount": "2500",
"currency": "INR"
},
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "2500.00",
"currency": "INR"
},
"chequeDate": "2025-04-23",
"chequeNo": "100000",
"depositDate": "2025-04-24",
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "cheque",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"initialDeposit": {
"amount": "2500",
"currency": "INR"
},
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "2500.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"initialDeposit": {
"amount": "2500",
"currency": "INR"
},
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "2500.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "transfer",
"network": "imps",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"id": "i-1",
"initialDeposit": {
"amount": "2500",
"currency": "INR"
},
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "2500.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "upi",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid",
"vpa": "john@bhim"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}{
"instructions": [
{
"accountId": "1234567890",
"id": "i-1",
"initialDeposit": {
"amount": "2500",
"currency": "INR"
},
"instruction": "open_sa",
"openMode": "solo",
"productVariant": "regular"
}
],
"sections": [
{
"accountId": "1234100000",
"amount": {
"amount": "2500.00",
"currency": "INR"
},
"id": "s-1",
"ifsc": "ICIC0001234",
"method": "net_banking",
"paymentDate": "2025-04-23",
"paymentTxnId": "999999100000",
"pg": {
"name": "ccAvenue"
},
"section": "payment",
"status": "paid"
}
]
}{
"message": "Form submitted successfully",
"status": "success"
}POST /token/exchangePOST /token/exchange
a request to exchange a taken with the appropriate one (useful for cases where login is done using a different method)
{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJQUDEyMzQ1IiwiZG9iIjoiMTk5MC0wMS0wMSIsIm1vYmlsZSI6Ijk4NzY1NDMyMTAiLCJpYXQiOjE1MTYyMzkwMjIsImV4cCI6MTUxNjIzOTAyMn0.kTVkTCr1iBJn2-1VLDR7Cvg2wf_diXp3zdxy6DTlQwM"
}{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJQUDEyMzQ1IiwiZG9iIjoiMTk5MC0wMS0wMSIsIm1vYmlsZSI6Ijk4NzY1NDMyMTAiLCJpYXQiOjE1MTYyMzkwMjIsImV4cCI6MTUxNjIzOTAyMn0.kTVkTCr1iBJn2-1VLDR7Cvg2wf_diXp3zdxy6DTlQwM",
"expiresIn": 3600,
"refreshToken": "b7e02a14-7db8-45a2-993f-061a130d245b",
"tokenType": "Bearer"
}POST /customers/findPOST /customers/find
a request to find one customer with mobile 1234567890 and dob 1985-05-15 and pan FGHIJ5678K
POST /customers/find
a request to find one customer with mobile 9876543210 and dob 1990-01-01 and pan ABCDE1234F
{
"dob": "1985-05-15",
"mobile": "1234567890",
"pan": "FGHIJ5678K"
}{
"customerId": "zHTgHC1SAiew",
"dob": "1985-05-15",
"mobile": "1234567890",
"name": "Jane Smith",
"pan": "FGHIJ5678K"
}{
"dob": "1990-01-01",
"mobile": "9876543210",
"pan": "ABCDE1234F"
}{
"customerId": "ZKFWiEyTKTkT",
"dob": "1990-01-01",
"mobile": "9876543210",
"name": "John Doe",
"pan": "ABCDE1234F"
}POST /customers/info/profilePOST /customers/info/profile
a request to get a customers profile
{
"customerId": "zHTgHC1SAiew"
}{
"dob": "1985",
"email": "***om",
"mobile": "***90",
"name": "***th",
"pan": "***8K"
}POST /customers/fd/calculatorPOST /customers/fd/calculator
a request to calculate fd returns
{
"customerId": "ZKFWiEyTKTkT",
"depositAmount": {
"amount": "10000",
"currency": "INR"
},
"interestPaymentOption": "monthly",
"tenure": "P12M"
}{
"interestEarned": {
"amount": "1000",
"currency": "INR"
},
"maturityAmount": {
"amount": "11000",
"currency": "INR"
},
"maturityDate": "2024-01-01",
"roi": "10.5",
"startDate": "2023-01-01"
}POST /token/exchangePOST /token/exchange
a request to exchange a taken with the appropriate one (useful for cases where login is done using a different method)
{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJQUDEyMzQ1IiwiZG9iIjoiMTk5MC0wMS0wMSIsIm1vYmlsZSI6Ijk4NzY1NDMyMTAiLCJpYXQiOjE1MTYyMzkwMjIsImV4cCI6MTUxNjIzOTAyMn0.kTVkTCr1iBJn2-1VLDR7Cvg2wf_diXp3zdxy6DTlQwM"
}{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJQUDEyMzQ1IiwiZG9iIjoiMTk5MC0wMS0wMSIsIm1vYmlsZSI6Ijk4NzY1NDMyMTAiLCJpYXQiOjE1MTYyMzkwMjIsImV4cCI6MTUxNjIzOTAyMn0.kTVkTCr1iBJn2-1VLDR7Cvg2wf_diXp3zdxy6DTlQwM",
"expiresIn": 3600,
"refreshToken": "b7e02a14-7db8-45a2-993f-061a130d245b",
"tokenType": "Bearer"
}