How Much Api Calls a Timer Consumes?

Hello, i want to know how a Timer Can Consume api Calls? for example lets say i have a Timer that works “daily”?
how many times this timer will be called per day?
is it will be triggerd on a specific time every day or its triggerd within each update to the database table during the day ?

Hello @Mohammed_Abdalla

It should be called as you schedule it, if it’s scheduled as “daily” it will be called once a day.
I assume you mixed it with EventHandlers

Regards, Vlad

thanks Vladimir