How to Block Calls on WhatsApp Business: 2026 Guide

Blocking a contact, silencing unknown callers, and disabling calls solve different problems. Discover which method to use and the potential sales impact of each decision.

by Cleverson Gouvêa

How to Block Calls on WhatsApp Business: 2026 Guide

Those asking how to block calls on WhatsApp Business have usually tried the obvious path and found it doesn't work. Blocking a contact, silencing unknown callers, and disabling calls are three distinct operations, each with different effects for the customer on the other end. This guide shows which to use in each scenario, what Meta currently allows on the Official API, and how much each choice costs in lost sales.

TL;DR — The Quick Answer

  • Blocking a number (PrivacyBlocked Contacts) blocks calls, messages, and status updates from that contact — but it's one-by-one, not scalable.
  • Silencing unknown callers (PrivacyCalls) stops the device from ringing for numbers not in your contacts; the call still appears in the Calls tab and notifications.
  • Disabling "Receive calls" in the app makes the call button disappear from the conversation — but this is a device-specific setting, not account-wide.
  • On the Official API (Cloud API), control is a field: POST /<PHONE_NUMBER_ID>/settings with calling.status = "DISABLED". This applies to the entire number, for all agents.
  • There's a better path than simply turning calls on/off: call_hours (business hours by timezone and holiday) and callback_permission_status (callback request).
  • Deciding how to block calls on WhatsApp Business without looking at your funnel is the most expensive mistake: in telemedicine, inspections, and life verification, a call is the conversion.

Blocking, Silencing, and Disabling Are Not the Same

This confusion explains almost all the support we receive on the topic. Those looking to block calls on WhatsApp Business usually want one of the three — and choose the wrong one. The three actions solve distinct problems and create different experiences for those trying to contact the business.

Action Location What the Customer Experiences Scope
Block Contact PrivacyBlocked Contacts The call doesn't connect, and messages show a single checkmark One number at a time
Silence Unknown Callers PrivacyCalls Hears the "ringing" tone normally — thinks they're being ignored All numbers not in contacts
Disable "Receive Calls" App SettingsCalls The call button disappears from the conversation Only on that device
calling.status = DISABLED POST /<PHONE_NUMBER_ID>/settings The call icon disappears from the chat and business profile The entire number, for the whole team

Remember the difference between 'the button doesn't exist' and 'you didn't answer.' The first is a declared company policy. The second is, to the customer, neglect. I've worked with WhatsApp customer service since the Business Platform became a product in Brazil, and this distinction has damaged more brand reputations than any delayed response.

How to Block Calls on the WhatsApp Business App in Three Ways

This section applies to those using the free application, downloaded from the Play Store or App Store. There are three ways to block calls on WhatsApp Business within the app, from the most precise to the most radical.

1. Block a Specific Number

Open the chat, tap the contact's name, and choose Block. Or go directly to SettingsPrivacyBlocked ContactsAdd. Blocking immediately cuts off calls, messages, and status updates from that number. If you switch phones while keeping the same account, your blocked list transfers with it.

This is the right path for the persistent customer who calls seven times in a row, for competitors scouting prices, and for numbers already reported as scams. It's not a solution for volume: blocking a hundred numbers requires a hundred manual repetitions.

2. Silence Unknown Callers

In SettingsPrivacyCalls, activate Silence Unknown Callers. According to the WhatsApp Help Center, numbers not in your contacts will no longer make your device ring — but the call will still be registered in the Calls tab and generate a notification.

This solves noise, not workflow. The agent still needs to check the list to determine if that missed call was spam or a hot lead who gave up. In operations with response time goals, silencing without a triage process merely shifts the problem.

3. Completely Disable "Receive Calls"

Tap the three dots in the top right corner, go to App SettingsCall Settings, and disable Receive Calls. The phone icon disappears from the conversation, and the number stops accepting calls.

The detail nobody tells you: this setting resides on the device. Did you format your phone, reinstall the app, or did a new agent log in with a different device? It reverts to default without warning anyone. If your solution for blocking calls on WhatsApp Business needs to survive team changes, the app isn't the right place to store it.

How to Block Calls on WhatsApp Business via the Official API

On the WhatsApp Business Platform, behavior is declared via API — and this changes everything, because the configuration becomes auditable, versionable, and consistent for all agents. It's the only way to block calls on WhatsApp Business that survives device and team changes.

Meta's call settings documentation describes the endpoint:

POST /<PHONE_NUMBER_ID>/settings

{
  "calling": {
    "status": "DISABLED",
    "call_icon_visibility": "DISABLE_ALL"
  }
}

There are two fields with different effects:

  • status accepts ENABLED or DISABLED and turns the calling feature on or off for the number.
  • call_icon_visibility accepts DEFAULT or DISABLE_ALL. With DISABLE_ALL, the call button disappears from the chat and business profile — but Meta itself warns that users may still attempt unsolicited calls.

Three requirements and limitations you need to know before trying:

  1. The number must be active on the Cloud API, not the application. The two are mutually exclusive.
  2. To enable calls in production, Meta requires a message limit of at least 2,000 unique recipients per day.
  3. Configuration changes can take up to 7 days to reflect for WhatsApp clients. It's not instantaneous, and planning a last-minute cutover will go wrong.

If you're still deciding between the two platforms, the comparison WhatsApp Business App vs. Official API and the complete guide to the WhatsApp Cloud API cover the selection criteria. For a step-by-step guide focused on disabling the feature, the companion guide to this post is Disabling Calls on WhatsApp Business.

The Middle Ground Almost No One Configures: Business Hours and Callbacks

Turning everything off is the lazy solution. The Official API offers two fields that solve the real problem — 'I don't want calls outside business hours' — without closing the channel.

call_hours: The Channel Opens and Closes Automatically

You declare a timezone (e.g., America/New_York) and service windows per day of the week. Outside these hours, WhatsApp hides the call option and suggests the customer send a message. Meta's rules: a maximum of 2 windows per day, with no overlap, and up to 20 calendar exceptions for holidays and breaks.

In practice, it's the difference between 'this company doesn't answer calls' and 'this company answers calls from 8 AM to 6 PM.' The second message costs nothing and preserves the perception of availability.

callback_permission_status: The Customer Requests a Callback

With the field set to ENABLED, after a missed or ended call, WhatsApp offers the user the option to request a callback. You receive the request via webhook and call back when an agent is available. It's the queue the free application never had.

Before deciding how to block calls on WhatsApp Business, run a test: enable this pair of fields for two weeks. In most operations I've observed, the volume of unwanted calls drops significantly when business hours become explicit — and no lead is left without a callback option.

Meta's Built-in Rules That Already Block Calls For You

Many businesses disable calls due to fear of abuse that the platform already limits. Meta's call permissions documentation provides concrete figures, and it's worth knowing them before making a decision:

  • 1 permission request every 24 hours and a maximum of 2 in 7 days, per business-user pair.
  • Temporary permission granted is valid for 7 consecutive days (168 hours); permanent permission does not expire, but the user can revoke it at any time.
  • Each business number can make a maximum of 100 connected calls every 24 hours, combining those initiated by the business and by the customer.
  • 2 consecutive unanswered calls trigger a system message suggesting the user reconsider; 4 consecutive calls automatically revoke permission.
  • Business-initiated calls are not available in the United States, Canada, Egypt, Vietnam, and Nigeria. Video is still listed as a planned feature.

In other words: aggressive telemarketing via WhatsApp is already structurally unfeasible. Businesses asking how to block calls on WhatsApp Business because of spam from other companies gain more by blocking repeat offenders and reporting them than by closing their own channel.

When Not to Block — And What It Costs

Knowing how to block calls on WhatsApp Business doesn't mean you should. There are scenarios where disabling calls is the wrong business decision, and it consistently appears in the same sectors:

  • Healthcare and Telemedicine: Voice consultation is the product. Blocking calls means blocking revenue.
  • Insurance and Inspections: Life verification, remote assessments, and video inspections rely on calls within the same channel where the customer already is.
  • Real Estate and Dealerships: High-value transactions, long decision cycles, customers who want to hear a voice before scheduling a visit.
  • Critical Technical Support: Five minutes of voice can resolve what thirty messages cannot.

The standard in these cases isn't an on-off switch: it's well-configured call_hours, a service queue, and routing that knows who to deliver the call to. Total blocking in these sectors is revenue loss disguised as productivity.

There's also the opposite case, where blocking is the right move: transactional broadcast numbers, OTP numbers, and automated billing numbers should not receive any calls. There, calling.status = DISABLED is hygiene, not restriction.

Three Traps for App-Only Configurations

Before choosing how to block calls on WhatsApp Business, check if your operation isn't falling into one of these traps.

The configuration is not auditable. In the app, no one can prove in an audit what the call policy was on a given date. On the API, the configuration is a queryable state of the number — and this matters for those responsible for compliance or data privacy regulations like CCPA.

The configuration does not scale. With two or three agents and multiple linked devices, the policy becomes a matter of luck. Just one device with the option enabled is enough for a customer to call and no one to answer.

Improvised workarounds are worse than the problem. Businesses that try to circumvent app limitations with unofficial APIs enter directly into the territory of number banning, a topic I've detailed in WhatsApp Business Ban: The 2026 Wave in Brazil. Losing your number costs much more than tolerating a few calls.

How Agathas Web Solves This

When the problem shifts from 'I want it to stop ringing' to 'I want control over who contacts the company, when, and through which channel,' the answer to how to block calls on WhatsApp Business is to migrate to the Official API with a platform that exposes these configurations without you needing to write code.

That's exactly what the Voyia does. It's our customer service platform built on Meta's Official WhatsApp Business API, developed and operated here by Agathas Web. What's included:

  • Multi-agent inbox with queuing, agent transfers, and real-time conversations — the routing layer the free app lacks.
  • Official API number, with step-by-step verification guided by our team. This prerequisite unlocks the calling, call_hours, and callback_permission_status fields.
  • No-code chatbot and bulk messaging with Meta-approved templates, to redirect what is currently a call to text.
  • AI integration using your own key — Claude, GPT, Gemini, or another model — without vendor lock-in.
  • Delivery, read, and response time reports, so you can measure whether blocking calls improved or worsened customer service.
  • Zero markup on Meta messages: we pass on the official rate, billed in US dollars with an invoice.

How to sign up: you choose one of the three plans (Starter, Professional, or Business) on the Voyia page, pay in USD with no long-term commitment, and we connect your number to the Official API. Each plan includes one WhatsApp number. From signup to first service usually takes a few hours, and support is in Brazilian Portuguese during business hours.

We are developers before we are license sellers: Agathas Web has been working since 2008 with infrastructure, Linux servers, Moodle, and custom development. If your operation needs call routing that isn't off-the-shelf, we build it.

Conclusion: Blocking Calls is an Operational Decision, Not Just a Configuration Setting

The question of how to block calls on WhatsApp Business has a simple technical answer and a difficult operational one. The technical solution involves three taps in the app or a POST to the Cloud API. The operational solution requires knowing who calls, why they call, at what time, and the value of each of those calls.

Start by measuring one week of incoming calls before disabling anything. If most are outside business hours, configure call_hours. If it's spam from repeat numbers, block them one by one. If calls simply aren't part of your product, disable them via the API and you're done — with the assurance that the policy applies to the entire team.

If your next step is to move beyond the app and gain real control over the channel, explore Voyia and speak with our team.