Country porting requirements
The country-specific information a port-in needs BEYOND the LOA,
invoice, and account/address details — e.g. an ID copy, proof of
address, a tax id, or a porting code. Call it after the portability
check (which returns each number's countryCode and
phoneNumberType), render the fields, and pass the collected values as
the create request's requirements. US/CA return an empty list.
Authorization
bearerAuth API key authentication - use your Zernio API key as a Bearer token
In: header
Query Parameters
ISO country of the numbers being ported (a supported port-in country).
2 <= length <= 2The portability check's phoneNumberType — requirements differ by type.
"local"Value in
- "local"
- "mobile"
- "national"
- "toll_free"
Response Body
application/json
application/json
application/json
{ "country": "string", "numberType": "string", "supported": true, "fields": [ { "requirementId": "string", "label": "string", "kind": "text", "description": "string", "example": "string", "acceptableValues": [ "string" ] } ]}Check portability
Pre-flight portability check: whether each number can be ported in and whether it qualifies for FastPort, BEFORE the user commits to a port order (LOA, invoice, service address). Read-only; creates no order and bills nothing.
Port numbers in
Submit a port-in for one or more existing numbers from another carrier. Creates the carrier order(s), attaches the end-user (current account) info plus the LOA and invoice documents, and submits to the losing carrier. The transfer PIN is forwarded to the carrier and never stored. Ported numbers arrive voice-ready (and SMS-ready where the order supports messaging). Run the portability check (POST /v1/phone-numbers/port-in/check) and upload the two documents (POST /v1/phone-numbers/port-in/documents) first — uploaded documents must be attached to an order within 30 minutes or the carrier deletes them, so upload right before this call. The carrier may split the numbers into several orders (by country, number type, losing carrier); `orders` carries per-order results, and a partial failure still returns 201 with the failed orders' `error` set (they stay as cancellable drafts). Non-US/CA numbers additionally need the country-specific values from GET /v1/phone-numbers/port-in/requirements, passed via `requirements`, and must be submitted one country per request. When required information is still missing after submission, the order is kept as a resumable draft whose `error` / `declineReason` names the gaps.