Skip to main content
Branded Calling is in beta. Learn more in Making calls with Branded Calling.
This walk-through takes you from a fresh account to a verified Display Identity Record (DIR) with phone numbers attached. You’ll need a verified or enterprise-level Telnyx account and an API key.

Before you begin

You’ll need:
  • A Telnyx account with verified or enterprise access and an API key.
  • One or more US Telnyx phone numbers in your inventory. (Branded Calling is currently US-to-US; non-US numbers won’t produce a branded result yet.)
  • Your business legal details (legal name, EIN, jurisdiction of incorporation, addresses, contacts).
  • A logo image, 256×256 BMP only, ≤1 MB, hosted at a publicly-reachable HTTPS URL (optional, you can submit without one). Most design tools export PNG by default; convert to BMP with any standard image editor (Preview, Photoshop, ImageMagick, GIMP) before hosting.
  • Supporting documents (e.g. business registration, letter of authorization). Upload each one through the Telnyx Documents API first; the API gives you back a document_id that you reference here.

Step 1: Accept the Branded Calling Terms of Service

Read the full terms at telnyx.com/terms/branded-calling.
Idempotent, calling again after you’ve already agreed is a no-op. You can check your current agreement status at any time:

Step 2: Create an Enterprise

Save the id from the response, you’ll need it for the activation step. For the full field reference (every required field, enum values, contact + address shape), see Enterprises.

Step 3: Activate Branded Calling on the enterprise

Branded Calling is a paid product that must be explicitly activated per enterprise. Without this step, DIR creation in Step 5 returns 400 with code=10015 and a detail pointing back to this endpoint.
The HTTP response returns with the enterprise body.
Activation completes asynchronously. The enterprise body comes back immediately, but the registration finishes a few seconds later. If you create a DIR (Step 5) right away you may get 400 with detail: "Branded calling registration has not completed" for roughly 10 seconds. Wait and retry, or poll the enterprise until activation settles. Both endpoints are idempotent.
A 403 here means the Branded Calling Terms of Service hasn’t been accepted yet (back to Step 1).
Activating Branded Calling on an enterprise is billable. See Branded Calling pricing.

Step 4: (Optional) Validate your call reasons up front

When a DIR’s call reasons are all pre-approved, the call-reason vetting check passes automatically, which can speed up review (the DIR is still vetted and is not auto-approved). Run them through the validator before creating the DIR, both reasons below are on the pre-approved catalogue, so this example returns all_pre_approved: true:
The body is a bare JSON array of strings: do not wrap it in { "call_reasons": [...] }.
If you instead send a mix that includes any custom string (for example "Patient Follow-up", which is not on the pre-approved list), the response is requires_manual_vetting: true with the offending entries in non_approved_reasons. Custom reasons are still allowed; the call-reason check is then reviewed manually, which can take longer. Pull the live pre-approved catalogue with GET /v2/call_reasons (see the Call Reasons guide) and copy the reason strings verbatim into your DIR to help speed up the call-reason check.

Step 5: Create a DIR

A Display Identity Record (DIR) defines what recipients see on their phone: display name, logo, and call reason.
Field rules, these are enforced and a violation returns 400 (with an error code such as 10015, 10025, or 10026 and a source.pointer to the offending field): The DIR is created in draft status. Save the id, this is your dir_id.

Step 6: Submit for vetting

The DIR moves to submitted, then in_review. Telnyx then reviews and approves the DIR out-of-band (this is not instantaneous; pre-approved call reasons can shorten it - see Step 4). Wait for the DIR to reach verified before attaching phone numbers in Step 7. Outcomes:
  • verified, approved. Phone numbers can now be attached.
  • rejected, fixable. Read rejection_reasons on the DIR and the vetting_comment / rejection_reason entries on GET /v2/dir/{dir_id}/comments for context, PATCH the offending fields, then POST /submit again.
  • unsuccessful, system error. Same handling as rejected.
  • permanently_rejected, terminal. The only exit is DELETE /v2/dir/{dir_id} (remove any attached phone numbers first, or the delete returns 400).
If all your call reasons are pre-approved (Step 4), the call-reason check passes automatically, which can shorten review - but the DIR still goes through vetting before it reaches verified.
Once a DIR is verified, a non-trivial PATCH that actually changes a field moves it back to draft and tears down the live registration. You must POST /submit and be re-approved before it serves traffic again. Avoid editing a verified DIR unless you intend to re-vet it.
While waiting, poll GET /v2/dir/{dir_id} for the current status. Use a sensible cadence (e.g. once every 30-60 seconds); don’t poll in a tight loop. If /submit fails with a 400 and the DIR has an open infringement claim, resolve the claim first, see Infringement Claims.

Step 7: Attach phone numbers

Once the DIR is verified, you can attach phone numbers. A signed Letter of Authorization (LOA) is required on every add request. First upload your signed LOA to the Telnyx Documents API and capture the returned id:
Then add the numbers, referencing that id as document_id:
  • A documents array with at least one letter_of_authorization entry is required (1-20 documents). The request is rejected with 400 if it’s missing or has no LOA entry.
  • Up to 15 numbers per request.
  • Atomic: if any number is invalid, already attached, or not in your inventory, the entire batch is rejected with 400 and nothing is written. The error response identifies the offending number(s); remove them and re-submit the rest.
  • Numbers must be E.164 format and present in your Telnyx inventory.
  • The DIR must be in verified status. Adding numbers to a DIR in any other status returns 400 with detail "...DIR must be verified".
Adding phone numbers is billable. See Branded Calling pricing.
Each POST creates one batch. Track batch progress through carrier-network vetting:
See Phone Numbers for the full batch lifecycle.

Step 8: Make branded calls

Once a phone number reaches verified status, it is eligible to display your branded identity on outbound calls.
The recipient’s experience depends on their carrier and device supporting branded calling. Coverage is strongest on major US carriers with compatible devices.

What’s next