Daily SIP
Registration
T = day of registration
T+2c = start of instalments
Debit Schedule
SIP debit happens on the following days:
Business Day Daily SIP: Mon, Tue, Wed, Thu, Fri
Calendar Day Daily SIP: Mon, Tue, Wed, Thu, Fri, Sat, Sun
Process (w/ UPI Autopay)
T = day of sip instalment
- on
T-1cday: Notification about the next day debit will be sent to the investor by his bank, at around 5am - on
Tday: Actual debit happens, at around 8am - on
T+1bday: Units are allotted on that day's NAV - on
T+1b+1cday: Unit allotment details are available. SMS notification is sent to the investor by the AMC.
Cancellation
You can cancel a SIP anytime when the fulfillment is in PENDING OR ONGOING states.
When cancelled
- No future instalments will be generated
- Instalments already generated but waiting for the payment debit - will have no impact (the debit will happen as per the schedule)
- Instalments already generated and payment debit happened - will have no impact (units will be allotted after processing)
API
In the on_search callback, scheme plans supporting daily sip will have fulfillments of type = SIP and THRESHOLDS.FREQUENCY tag = P1D with the following variations
- For Business day Daily SIP:
THRESHOLDS.FREQUENCY_DAY_TYPEtag =BUSINESS - For Calendar day Daily SIP:
THRESHOLDS.FREQUENCY_DAY_TYPEtag =CALENDAR
While making a select call, use the appropriate fulfillment id and provide the schedule as shown in the example below.
"fulfillments": [
{
"id": "34002",
// ... other attributes
"stops": [
{
"time": {
"schedule": {
"frequency": "R6/2025-05-15/P1D" // 6 instalments, starting 15th May
}
}
}
]
}
]