Connect NSDL Account
Use this API to generate a link to connect an NSDL current account after it has been successfully opened.
Please note: Only current accounts opened via Bulkpe can be connected. Existing accounts are not supported.
API URL: https://api.bulkpe.in/client/cb/connect
Method: POST
Auth: Please refer to the Authorization page.
{
"redirect": "https://bulkpe.in", //redirect url after account is connected
"accountId": "CBACL00033" //use accountId from Create or List API
}
Response
{
"status": true,
"statusCode": 200,
"data": {
"accountNumber": "232323232323232",
"accountType": "CURRENT",
"bankName": "NSDL Payments Bank",
"branch": "One International Center, Prabhadevi",
"customerId": "23232323",
"ifsc": "NSPB0000002",
"openedDate": "09-01-2025",
"server": "NSDL",
"status": "CREATED", //PENDING, CREATED, SUCCESS
"message": "Account opening url initiated",
"pan": "ABCDR5102L",
"phone": "999888998",
"email": "[email protected]",
"balance": 0,
"holdBalance": 0,
//redirect account holder to below link to authenticate and connect their account
"link": "https://nsdljiffy.co.in/connectedbanking/RequestAuth?token=33adsdsdsdsdsdsdsdsdsdsdsds",
"reference": "test009",
"accountId": "CB00051"
},
"message": "Successfully initiated"
}
Response if the account is already connected
{
"status": false,
"statusCode": 400,
"data": {},
"message": "Account already connected"
}
Response if the account is not opened
{
"status": false,
"statusCode": 400,
"data": {},
"message": "Please complete the account creation!"
}