Sandbox accounts are only available to you if you are a Tech Partner.
Overview
A WhatsApp sandbox account is a mock WhatsApp Business Account that you can use to test your Calling API integration. Use a calling sandbox account to test the following features:
Initiate and receive calls using the Calling API
Validate calling webhook events
Simulate onboarding flows without creating real business assets
Sandbox account calling limits
The following table outlines the calling limits for sandbox accounts. These limits are subject to change.
Limit
Description
Production number limit
Public test number limit
Connected call limit
Number of calls a business is allowed to make on approved permissions.
100 connected calls per 24 hrs
No change
Call Permission Request message limits
Limits the number of call permission request messages that can be sent to the same consumer
1 request per day
2 requests per week
25 requests per day
100 requests per week
Unanswered call limits
When a business initiated call goes unanswered (In essence, is rejected by the user or missed by the user).
Nudge on 2 consecutive unanswered calls
Revoke permission on 4 consecutive unanswered calls
Nudge on 5 consecutive unanswered calls
Revoke on 10 consecutive unanswered calls
Temporary call duration
Duration a business can call the user after permission is approved.
In the Graph API Explorer tool, enter /<YOUR_SANDBOX_TEST_PHONE_NUMBER_ID>/messages in the endpoint builder.
In the left sidebar, click JSON, then enter the following JSON body, then click Submit:
{
"messaging_product": "whatsapp",
"to": "YOUR_NUMBER", // Replace this value with phone number of your device.
"type": "template",
"template": {
"name": "hello_world",
"language": { "code": "en_US" }
}
}
You will receive a response with a "message_status": "accepted" value, and you should receive a text message on your device.