---
title: "Get a phone-number batch"
method: GET
path: "/dir/{dir_id}/phone_number_batches/{batch_id}"
tags: ["Phone Number Batches"]
---

# Get a phone-number batch

`GET /dir/{dir_id}/phone_number_batches/{batch_id}`

Get a single phone-number batch by id. The enterprise is resolved server-side from the DIR id.

## Path parameters

- `dir_id` string, uuid, required
- `batch_id` string, uuid, required

## Response `200`

Batch.

- PhoneNumberBatchWrapped
  - `data` PhoneNumberBatch, required — A phone-number batch groups all numbers added in a single bulk-add request. Telnyx vets the batch as a unit. The response embeds the full `phone_numbers` array so you can read per-number status without a separate call, plus a batch-level `status` summarising the unit's progress.
    - `batch_id` string, uuid
    - `dir_id` string, uuid
    - `dir_display_name` string — The DIR's display name at the time the batch was read.
    - `enterprise_id` string, uuid
    - `status` 'submitted' | 'in_review' | 'verified' | 'unsuccessful' | 'suspended' | 'expired' | 'permanently_rejected' — Phone-number lifecycle status. - `submitted` / `in_review` - Telnyx is reviewing the batch this number belongs to. - `verified` - approved; the DIR's display identity will be shown on outbound calls from this number. - `unsuccessful` - Telnyx rejected this submission; the customer may re-add to retry. - `suspended` - temporarily disabled (e.g. by an active infringement claim on the DIR). - `expired` - verification expired; re-add to renew. - `permanently_rejected` - terminal; cannot be re-added on this or any other DIR you own.
    - `total_count` integer — Number of phone numbers in this batch (length of `phone_numbers`).
    - `submitted_at` string, date-time — When the batch was created (and implicitly submitted for vetting).
    - `documents` Document[] — Documents attached to this batch (e.g. a Letter of Authorization). Empty when none were supplied at add time.
      - `document_id` string, uuid, required — Id returned by the Telnyx Documents API after you upload the file (upload via `POST /v2/documents`; see https://developers.telnyx.com/api/documents).
      - `document_type` 'letter_of_authorization' | 'business_registration' | 'articles_of_incorporation' | 'tax_document' | 'ein_letter' | 'trademark_registration' | 'website_ownership' | 'business_license' | 'professional_license' | 'government_id' | 'utility_bill' | 'bank_statement' | 'other', required — Type of supporting document. Pick the closest match to what the file actually contains; `other` triggers manual vetting and may slow approval. The matching short_name reference list is at `GET /v2/dir/document_types`.
      - `description` string
    - `phone_numbers` DirPhoneNumber[] — All phone numbers in this batch, with per-number status.
      - `id` string, uuid
      - `dir_id` string, uuid
      - `enterprise_id` string, uuid
      - `phone_number` string — E.164 with leading `+`.
      - `batch_id` string, uuid, nullable — Id of the batch this number was vetted as part of.
      - `loa_document_id` string, uuid, nullable — Id of the Letter of Authorization document attached to this number's batch.
      - `status` 'submitted' | 'in_review' | 'verified' | 'unsuccessful' | 'suspended' | 'expired' | 'permanently_rejected' — Phone-number lifecycle status. - `submitted` / `in_review` - Telnyx is reviewing the batch this number belongs to. - `verified` - approved; the DIR's display identity will be shown on outbound calls from this number. - `unsuccessful` - Telnyx rejected this submission; the customer may re-add to retry. - `suspended` - temporarily disabled (e.g. by an active infringement claim on the DIR). - `expired` - verification expired; re-add to renew. - `permanently_rejected` - terminal; cannot be re-added on this or any other DIR you own.
      - `rejection_reason` RejectionReason
        - `code` string
        - `title` string
        - `detail` string
        - `message` string, nullable — Customer-visible free-text comment from the Telnyx vetting team. Only the first entry of `rejection_reasons` carries this; the rest are `null`.
      - `created_at` string, date-time
      - `updated_at` string, date-time
      - `verified_at` string, date-time, nullable

## Other responses

- `default` — An error occurred. The response carries the standard Telnyx error envelope.
- `4XX` — An error occurred. The response carries the standard Telnyx error envelope.

---

[API](https://skmtc.net/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.net/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/team-telnyx/telnyx-api-2/versions/8f5f4e537994/schema)
