Is On-Call Time Compensable? Understanding When You Must Pay

Hours when an employee must be available to work if needed, even if not actively working. Compensation requirements vary based on how restrictive the on-call requirements are on the employee's personal time.
Jimmy Law

What Is On-Call Time?

On-call time refers to hours when an employee must be available to work if needed, even when they're sitting at home rather than actively working. Whether on-call time is compensable depends on how restrictive the requirements are on the employee's personal time.

This distinction matters significantly for businesses in healthcare, IT, facilities management, and other fields where 24/7 coverage requires employees to be reachable outside normal working hours.

The Basic Legal Standard

The Fair Labor Standards Act uses a simple test: if employees are "engaged to wait," they must be paid. If they're "waiting to be engaged," payment is generally not required.

The key question is whether the on-call restrictions are so significant that employees cannot use the time effectively for their own purposes.

Factors That Determine Compensability

Courts consider several factors when deciding if on-call time must be paid:

Geographic Restrictions

Must the employee remain:

The more restricted the location, the more likely the time is compensable.

Response Time Requirements

How quickly must they respond?

Shorter response times restrict personal activities more severely.

Frequency of Calls

How often does the employee actually get called?

Frequent calls prevent employees from engaging in personal activities.

Ability to Engage in Personal Activities

Can the employee:

The more personal freedom they retain, the less likely the time is compensable.

Contractual Requirements

Written agreements matter:

Examples of Compensable On-Call Time

Must Stay On-Site

A facilities manager required to remain on the employer's premises overnight while on call must be paid for all hours, even if they can sleep or relax.

Severe Geographic Restrictions

An employee required to remain within 5 minutes of the workplace would likely be entitled to pay because this severely limits where they can be and what they can do.

Constant Interruptions

An IT worker who receives on-call pages every 30-60 minutes throughout the night cannot effectively use the time for personal purposes and should be compensated.

Restricted Activities

If employees cannot drink alcohol, must stay sober, or cannot engage in certain activities during on-call time, these restrictions may make the time compensable.

Examples of Non-Compensable On-Call Time

Minimal Restrictions

An employee who carries a company phone but can go anywhere, do anything, and simply must respond within 60 minutes if called is probably not entitled to on-call pay.

Rare Calls

Someone on call one week per month who rarely receives actual calls and has no geographic restrictions retains sufficient freedom that the time likely isn't compensable.

Long Response Times

Requiring someone to respond within 2 hours generally allows enough freedom for personal activities that the time isn't compensable.

Sleep Time During On-Call Periods

Special rules apply to employees who stay overnight at work:

Shifts Under 24 Hours

All time must be paid, including sleep time, unless the employee is completely relieved of duty.

Shifts 24 Hours or More

Employers and employees can agree to exclude up to 8 hours of sleep time and meal periods from compensable time if:

If the employee gets less than 5 hours of uninterrupted sleep, the entire sleep period must be paid.

Industry-Specific Applications

Healthcare

Doctors, nurses, and other healthcare workers are frequently on call. Whether this time is compensable depends heavily on restrictions:

IT and Technology

Tech workers often carry on-call responsibilities. Factors include:

Facilities and Maintenance

Maintenance workers may be on call for emergencies:

Emergency Services

Volunteer firefighters and emergency responders have specific rules under the FLSA with special provisions for their on-call status.

Paying for On-Call Time

If Time Is Compensable

When on-call time must be paid:

On-Call Pay vs. Call-Back Pay

Many employers pay:

This is legal as long as:

Call-Back Minimum Pay

Some employers guarantee minimum pay when an employee is called back (e.g., minimum 2 hours pay even if the work takes 30 minutes). This is good practice and improves employee satisfaction.

Creating Clear On-Call Policies

Your policy should specify:

Who Is On-Call When

Response Requirements

Geographic and Activity Restrictions

Be explicit about:

Compensation

Clearly state:

Equipment and Technology

Minimizing Compensable On-Call Time

If you want to avoid paying for on-call periods:

Provide Maximum Freedom

Use Rotations

Spread on-call duty across multiple employees so no one is on-call excessively.

Leverage Technology

Allow remote responses when possible so employees don't have to come on-site.

Consider Paying Anyway

Even if not legally required, offering on-call pay improves recruitment, retention, and morale.

Common On-Call Mistakes

Assuming It's Never Compensable

Many employers incorrectly assume on-call time is never paid. When restrictions are significant, you owe wages.

Inconsistent Policies

Treating on-call time differently for different employees doing similar work creates problems.

Not Tracking On-Call Hours

If on-call time is compensable, you must track it for overtime calculations.

Verbal-Only Policies

Put on-call requirements and compensation in writing to avoid disputes.

Over-Restricting Employees

Every restriction you add makes it more likely the time is compensable. Only impose restrictions that are truly necessary.

State Law Considerations

Some states have specific on-call requirements:

California

"Reporting time pay" requires minimum payment when employees report for scheduled work or are called back. On-call time itself follows federal standards.

Massachusetts

Three-hour minimum for reporting time when employees come into work.

Check your state's requirements as they may be more generous to employees than federal law.

Documentation and Record-Keeping

Maintain records of:

This documentation is essential if the Department of Labor or a court reviews your practices.

The Gray Areas

Some situations remain genuinely unclear:

Carrying a Work Phone

Simply carrying a smartphone doesn't make all non-working hours compensable, but if restrictions are severe or calls are constant, it might.

Partial Restrictions

What about "try to stay within 45 minutes of the office"? The murkier the restriction, the harder it is to predict whether time is compensable.

When in Doubt

If you're uncertain whether your on-call requirements create compensable time:

On-call time creates complex questions about compensability. The key is analyzing how much freedom employees retain during on-call periods. When restrictions are minimal and calls are rare, on-call time usually isn't compensable. When employees are tethered closely to work with limited freedom, payment is required. Document your requirements clearly and evaluate them against FLSA standards to avoid violations.

Fast to set up. Easy to use.
Get your team up and running with Breakroom in 60 seconds. Or schedule a free, personalized demo today.
// Function to update active link function updateActiveLink(activeSectionId) { // Remove active class from all links navigationLinks.forEach(function(link) { link.classList.remove('is-active'); }); // Add active class to the corresponding link var activeLink = document.querySelector('a[href="#' + activeSectionId + '"]'); if (activeLink) { activeLink.classList.add('is-active'); } } // Set up intersection observer for scroll-based active states if (navigationLinks.length > 0) { var observerOptions = { root: null, rootMargin: '-20% 0px -80% 0px', // Trigger when section is 20% from top threshold: 0 }; var observer = new IntersectionObserver(function(entries) { entries.forEach(function(entry) { if (entry.isIntersecting) { updateActiveLink(entry.target.id); } }); }, observerOptions); // Observe all H2 sections headers.forEach(function(header) { observer.observe(header); }); }