> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voxo.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Order Local Numbers

> Order local phone numbers from carrier inventory



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json post /v2/admin/phone-numbers/local/order
openapi: 3.1.0
info:
  title: VOXO API
  description: VOXO Communication Platform API
  version: 2.0.0
servers:
  - url: https://api.voxo.co
security:
  - bearerAuth: []
paths:
  /v2/admin/phone-numbers/local/order:
    post:
      tags:
        - Phone Numbers
      summary: Order Local Numbers
      description: Order local phone numbers from carrier inventory
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                tenantId:
                  type: number
                  description: Tenant ID
                numbers:
                  description: Phone numbers to order
                  type: array
                  items:
                    type: string
                callerIdName:
                  type: string
                  maxLength: 15
                  description: Caller ID name (max 15 characters)
              required:
                - tenantId
              additionalProperties: false
      responses:
        '200':
          description: Order confirmation
          content:
            application/json:
              schema:
                type: object
                properties:
                  tenant:
                    type: object
                    properties:
                      id:
                        type: number
                        description: Tenant ID
                      name:
                        type: string
                        description: Tenant name
                    required:
                      - id
                      - name
                    additionalProperties: false
                  branch:
                    type: object
                    properties:
                      id:
                        type: number
                        description: Branch ID
                      name:
                        type: string
                        description: Branch name
                    required:
                      - id
                      - name
                    additionalProperties: false
                  numbers:
                    description: Ordered phone numbers
                    type: array
                    items:
                      type: string
                  callerIdName:
                    type: string
                    description: Caller ID name
                  pon:
                    type: string
                    description: Purchase order number
                required:
                  - tenant
                  - branch
                  - callerIdName
                  - pon
                additionalProperties: false
        '400':
          description: Error response
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: string
                  message:
                    type: string
                  code:
                    type: number
                  validationErrors:
                    type: array
                    items:
                      type: string
                required:
                  - name
                  - message
                  - code
                additionalProperties: false
        '403':
          description: Error response
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: string
                  message:
                    type: string
                  code:
                    type: number
                  validationErrors:
                    type: array
                    items:
                      type: string
                required:
                  - name
                  - message
                  - code
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````