Fix a declined number and re-submit
Submit corrected values/documents for the declined requirement(s). We
PATCH them onto the SAME requirement group and re-submit it for approval;
the number goes regulatory_declined → pending_regulatory. No new
number and no new billing. Body shape matches the KYC submit (values /
documents / address) — send only the corrected fields.
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
Same shape as the KYC submit address.
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.whatsappphonenumbers.remediateWhatsAppNumber({ path: { id: 'abc123', }, body: { values: {}, documents: [ { requirementId: 'requirement_abc123', filename: 'Example', base64: 'string', }, ], address: {}, },});console.log(data);{
"status": "resubmitted",
"phoneNumber": {
"id": "string",
"status": "string"
}
}{
"error": "Unauthorized"
}List offerable number countries GET
The WhatsApp number countries available to purchase, each with its flat monthly price (cents), regulatory tier, whether it needs end-user KYC (Tier 3/4), and whether outbound calling is available (not BIC-blocked). Drives the country picker. Tier-4 countries appear only when enabled.
Search available numbers to purchase GET
Search the provider's inventory for numbers available to purchase in a country (default US). Optional filters narrow the results. The country must be offerable (see GET /v1/whatsapp/phone-numbers/countries).