Configure Call Settings
Updated: Dec 10, 2025 Calling is not enabled by default on a business phone number Use thePOST /<PHONE_NUMBER_ID>/settings endpoint to enable Calling API features on a business phone number.
Calling Eligibility
To qualify for Calling API features, your business must have a messaging limit of at least 2000 business-initiated conversations in a rolling 24-hour period.
Learn more about Quality Ratings and Messaging Limits
When you test your WhatsApp Calling integration using public test numbers (PTNs) and sandbox accounts, Calling API restrictions are relaxed.
Learn more about testing your WhatsApp Calling API integration
Overview
Use these endpoints to view and configure call settings for the WhatsApp Business Calling API. You can also configure session initiation protocol (SIP) for call signaling instead of using Graph API endpoint calls and webhooks.Configure/Update business phone number calling settings
Use this endpoint to update call settings configuration for an individual business phone number. WhatsApp clients reflecting latest calling config After call configuration is updated, WhatsApp users may take up to 7 days to reflect that configuration although most users refresh much sooner. You can force an immediate refresh in WhatsApp by entering the chat window with business and open the chat info page. Regardless of WhatsApp client behavior, the semantics of settings are still honored on the server side.Request syntax
Endpoint parameters
| Placeholder | Description | Sample Value |
|---|---|---|
<PHONE_NUMBER_ID>Integer | Required The business phone number for which you are updating Calling API settings. Learn more about formatting phone numbers in Cloud API | +12784358810 |
Request body
Body parameters
| Parameter | Description | Sample Value | |
|---|---|---|---|
statusString | Optional Enable or disable the Calling API for the given business phone number. | “ENABLED”“DISABLED” | |
call_icon_visibilityString | Optional Configure whether the WhatsApp call button icon displays for users when chatting with the business. View call icon visibility behavior details below | View call icon visibility behavior details below | |
call_iconsString | Optional Configure whether WhatsApp call button icon displays for users when chatting with the business. View call icons visibility behavior details below | View call icons behavior details below | |
call_hoursJSON object | Optional Allows you specify and trigger call settings for incoming calls based on your timezone, business operating hours, and holiday schedules. Any previously configured values in call_hours will be replaced with the values passed in the request body of this API call.View call hours behavior details below | View call hours behavior details below | |
callback_permission_statusString | Optional Configure whether a WhatsApp user is prompted with a call permission request after calling your business. Note: The call permission request is triggered from either a missed or connected call. View callback permission status behavior details below | “ENABLED”“DISABLED” | |
sipJSON object | Optional Configure call signaling via signal initiation protocol (SIP). Note: When SIP is enabled, you cannot use calling related endpoints and will not receive calling related webhooks. Learn how to configure and use SIP call signaling | ``` “sip”: { “status”: “ENABLED | DISABLED (default)”, “servers”: [// one server per app] { “hostname”: SIP_SERVER_HOSTNAME “port”: SIP_SERVER_PORT, “request_uri_user_params”: { “KEY1”: “VALUE1”, // for cases like TGRP “KEY2”: “VALUE2”, } } ] } ``` |
Calling status
When thestatus parameter is set to “ENABLED”, calling features are enabled for the business phone number. WhatsApp client applications will render the call button icon in both the business chat and business chat profile.
When the status parameter is set to “DISABLED”, calling features are disabled, and both the business chat and business chat profile do not display the call button icon.
Updates to status will update the call button icon in existing business chats in near real-time when the business phone number is in the WhatsApp user’s contacts.
Otherwise, updates are real-time for a limited number of users in conversation with the business, and are eventual for the rest of conversations.
Call button icon visibility
When Calling API features are enabled for a business number, you can still choose whether to show the call button icon or not by using thecall_icon_visibility parameter. Note: Disabling call button icon visibility does not disable a WhatsApp user’s ability to make unsolicited calls to your business.
The behavior for supported options is as follows:
DEFAULT
The Call button icon will be displayed in the chat menu bar and the business info page, allowing for unsolicited calls to the business by WhatsApp users.
DISABLE_ALL
The call button icon is hidden in the chat menu bar and the business info page, and all other entry points external to the chat are also disabled. Consumers cannot make unsolicited calls to the business.
Your business can still send interactive messages or template messages with a Calling API CTA button.
Callback permissions
Calling a WhatsApp user requires explicit permission from the user. One way to obtain calling permissions is to request permission when a WhatsApp user calls your business. You can configure the call permission UI to automatically show in the WhatsApp user’s client app when they call your business number. The user may change their permission selection at any time.
Call Icons
With thecall_icons setting, you can specify the countries where these icons should show up.
| Parameter | Description | Sample Values |
|---|---|---|
restrict_to_user_countriesList of Strings | Optional Restrict the visibility of call icons to these countries. NOTE: For example if you restrict it to “US,” then it will apply to all the people who have a US registered phone number. These people could be physically located inside or outside of the USA. | Restrict to US and Brazil:<br />"restrict_to_user_countries": [<br /> "US",<br /> "BR"<br />]<br />No restriction: <br />"restrict_to_user_countries": []<br /> |
Call hours
With thecall_hours setting, you can specify the timezone, business operating hours, and holiday schedules that will be enforced for all user-initiated calls.
Configuring this setting restricts calls only to available weekly hours you configure. User-initiated calls are unavailable outside of the weekly hours and holiday schedules you set.
The WhatsApp client app will show users an option to chat with the business, or request a callback, if callback_permission_status is ENABLED. The user will also be shown the next available calling slot on the option screen.
| Parameter | Description | Sample Values |
|---|---|---|
statusString | Required Enable or disable the call hours for the business. If call hours are disabled, the business is considered open all 24 hours of the day, 7 days a week. | “ENABLED”“DISABLED” |
timezone_idString | Required The timezone that the business is operating within. Learn more about supported values for timezone_id | “America/Menominee”“Asia/Singapore” |
weekly_operating_hoursList of JSON object | Required |
day_of_week — ( Enum) [Required]
The day of the week.
Can take one of seven values: "MONDAY", “TUESDAY”, “WEDNESDAY”, “THURSDAY”, “FRIDAY”, “SATURDAY”, “SUNDAY”
open_time | close_time — ( Integer) [Required] |
”1130” = 11:30AM
Maximum of 2 entries allowed per day of week
open_time must be before close_time
Overlapping entries not allowed | <br />{<br />"day_of_week": "MONDAY",<br />"open_time": "0400",<br />"close_time": "1020"<br />},<br />{<br />"day_of_week":"TUESDAY",<br />"open_time": "0108",<br />"close_time": "1020"<br />}<br />...<br /> |
| holiday_scheduleString | Optional An optional override to the weekly schedule. Up to 20 overrides can be specified. Note: If
holiday_schedule is not passed in the request, then the existing holiday_schedule will be deleted and replaced with an empty schedule.
date — ( String) [Required]
Date for which you want to specify the override.
YYYY-MM-DD format.
open_time | close_time — ( Integer) [Required] |
”1130” = 11:30AM
Maximum of 2 entries allowed per day of week
open_time must be before close_time
Overlapping entries not allowed | <br />{<br />"date": "2026-01-01",<br />"start_time": "0000",<br />"end_time": "2359",<br />}<br />...<br /> |
Success response
Error response
Possible errors that can occur: Permissions/Authorization errors Invalid status Invalid schedule forcall_hours
Holiday given in call_hours is a past date
Timezone is invalid in call_hours
weekly_operating_hours in call_hours cannot be empty
Date format in holiday_schedule for call_hours is invalid
More than 2 entries not allowed in weekly_operating_hours schedule in call_hours
Overlapping schedule in call_hours is not allowed
Calling restriction errors
View Calling API Error Codes and Troubleshooting for more information
View general Cloud API Error Codes here
Get phone number calling settings
Use this endpoint to check the configuration of your Calling API feature settings. This endpoint can return information for other Cloud API feature settings.Request syntax
Endpoint parameters
| Parameter | Description | Sample Value |
|---|---|---|
<PHONE_NUMBER_ID>Integer | Required The business phone number for which you are getting Calling API settings. Learn more about formatting phone numbers in Cloud API | 124545784358810 |
App permission required
whatsapp_business_management: Advanced access is required to update use the API for end business clients
Response body
Include SIP user password
Optionally, you can include SIP user credentials in your response body by adding the SIP credentials query parameter in the POST request:Response details
TheGET /<PHONE_NUMBER_ID>/settings endpoint returns Calling API settings, along with other configuration information for your WhatsApp business phone number.
Learn more about Calling API settings and their values
Response with calling restrictions
If your business is enforced upon, the response body will contain information about the restriction as follows along with other calling api settings.| Parameter | Description |
|---|---|
<restrictions>JSON Object | The restrictions object contains the following values:restriction_list (JSON Object): list of currently imposed restrictions with the following valuestype (string) - for calling restriction, this would have the value of RESTRICTED_BIZ_INITIATED_AND_USER_INITIATED_CALLINGreason (string) - description of restrictionexpiration (Integer) - The UNIX time at which the restriction will expire in UTC timezone |
Error response
Possible errors that can occur: Permissions/Authorization errors View Calling API Error Codes and Troubleshooting for more information View general Cloud API Error Codes hereCall settings in WhatsApp Manager
You can also control your call settings via WhatsApp Manager. To access calling controls in WhatsApp Manager: Click on Account tools > Phone numbers panel Click the gear icon next to the phone number you are using for calling Click the Calls tab
Configure and use call signaling via session initiation protocol (SIP)
Session Initiation Protocol (SIP) is a signaling protocol used for initiating, maintaining, modifying, and terminating real-time communication sessions between two or more endpoints. You can send and receive call signals using SIP instead of Graph API endpoints. Learn more about how to use and configure SIPSettings update webhooks
You can subscribe to a new webhook subscription fieldaccount_settings_update to get notified on updates to phone number settings.
You’ll be notified even for your own updates
Currently only changes to calling settings are supported. Underneath the calling object, only changes to subset of fields are observed - status, call_icon_visibility, callback_permission_status, sip.status, srtp_key_exchange_protocol
Steps to get started
Set up your webhook subscription and subscribe to theaccount_settings_update field.
The same app should also be subscribed to the WhatsApp Business Account of your business phone number.
Your app should have whatsapp_business_management permission to receive the webhooks. Using access token for the same app, if you’re able to get settings successfully, your app is good to receive the webhooks too.
Webhook payload
Webhook values
| Placeholder | Description |
|---|---|
messaging_productString | Always whatsapp for now |
timestampInteger | Time when the settings got updated |
typeString | Type of the change. Currently only PHONE_NUMBER_SETTINGS |
phone_number_settingsObject | This field is present if the type is PHONE_NUMBER_SETTINGS. Currently only calling sub-field under this is supported. |
phone_number_settings.phone_number_idString | The phone number id, whose settings got updated |
phone_number_settings.callingObject | This is present only if fields related to calling are updated. It’s null otherwise. When present, the payload is same as Get settings API |
Calling Restrictions for User Feedback
If your calls receive a high negative user feedback, such as blocks and reports, calling functionality on your phone number can be restricted.Early Warning
You will be notified when the business phone number is close to being paused as an early warning. The early warning notifications will be communicated via below channelsWebhook
A webhook will be sent on theaccount_update field:
Pause in Calling functionality
Once the negative user feedback reaches a threshold, Cloud API will automatically restrict calling functionality on your phone number for a period of 7 days. While paused the calling phone number will be unable to Make business initiated calls to users Receive calls from users Have call icon visible Send call permissions requests Alter calling settings for this account number Once your phone number has been paused, notifications will be communicated via below channels.Webhook
A webhook will be sent on theaccount_update field:

