I am using azure timer trigger function for triggering every 15 minutes in a day. So I set the time in TimerTrigger->Integrate->Schedule as 0 */15 * * * *. But the function is executing on every 5 minutes.
Is any problem in given CRON expression?
Your expression is wrong.
Try these
0 */15 * ? * * // every 15 minutes starting at minute :00, of every hour
* 0/15 0 ? * * //every 15 minutes starting at minute :00
You can test it in cron generator
0 */15 * * * *is correct and I see function executes every 15m. Might be a silly suggestion but have you clickedSaveafter modifying the schedule?