Get Webhook
Retrieves the currently configured webhook URL and verification token for a specific app.
Endpoint
GET /api/v1/partner/apps/:phone_number_id/webhookPath Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
phone_number_id | string | Yes | The phone number ID associated with the app |
Response
Success 200 OK
{
"success": true,
"data": null,
"message": "Webhook not configured"
}Or if configured:
{
"success": true,
"data": {
"phone_number_id": "1234567890",
"override_callback_uri": "https://animated-kind-galleon.glitch.me/webhook",
"verify_token": "VERIFY_TOKEN",
"status": "active",
"updated_at": "2026-02-15T11:15:22Z"
}
}Try It
GET
/api/v1/partner/apps/{phone_number_id}/webhookGet webhook configuration{phone_number_id}