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

# Get a number registration

> One registration with its latest submission state and per-engine acknowledgments (hiya, tns, first_orion). A registration is `submitted` once the registry accepts it and `active` after the first engine acknowledges — propagation to carrier spam labeling typically completes within 24–48 hours.



## OpenAPI

````yaml /openapi.json get /v1/number-registrations/{id}
openapi: 3.1.0
info:
  title: RevDesk v1 API
  version: 1.0.0
  description: >-
    Programmatic access to the RevDesk voice platform — calls, numbers, caller
    trust, and brands.
  contact:
    name: RevDesk
    email: support@revdesk.com
servers:
  - url: https://api.revdesk.com
security:
  - bearerAuth: []
tags:
  - name: Phone Numbers
  - name: Caller IDs
  - name: Enterprise Registration
  - name: Branded Calling
  - name: Calls
  - name: SMS
  - name: WebRTC
  - name: Reputation
  - name: Usage
  - name: Account
  - name: Agents
  - name: Documents
  - name: Number Registration
  - name: Sub-entities
paths:
  /v1/number-registrations/{id}:
    get:
      tags:
        - Number Registration
      summary: Get a number registration
      description: >-
        One registration with its latest submission state and per-engine
        acknowledgments (hiya, tns, first_orion). A registration is `submitted`
        once the registry accepts it and `active` after the first engine
        acknowledges — propagation to carrier spam labeling typically completes
        within 24–48 hours.
      operationId: v1_number_registrations_id_get
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $schema: http://json-schema.org/draft-07/schema#
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      registration_id:
                        type: string
                      phone_number:
                        type: string
                      status:
                        type: string
                      source:
                        type: string
                      hosted:
                        type: boolean
                      monthly_rate_dc:
                        type: number
                      registered_at:
                        anyOf:
                          - type: string
                          - type: 'null'
                      cancelled_at:
                        anyOf:
                          - type: string
                          - type: 'null'
                      created_at:
                        type: string
                      submission:
                        anyOf:
                          - type: object
                            properties:
                              submission_id:
                                type: string
                              status:
                                type: string
                              submitted_at:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              vendor_acks:
                                type: object
                                properties:
                                  hiya:
                                    anyOf:
                                      - type: string
                                      - type: 'null'
                                  tns:
                                    anyOf:
                                      - type: string
                                      - type: 'null'
                                  first_orion:
                                    anyOf:
                                      - type: string
                                      - type: 'null'
                                required:
                                  - hiya
                                  - tns
                                  - first_orion
                                additionalProperties: false
                              last_error:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                            required:
                              - submission_id
                              - status
                              - submitted_at
                              - vendor_acks
                              - last_error
                            additionalProperties: false
                          - type: 'null'
                    required:
                      - registration_id
                      - phone_number
                      - status
                      - source
                      - hosted
                      - monthly_rate_dc
                      - registered_at
                      - cancelled_at
                      - created_at
                      - submission
                    additionalProperties: false
                required:
                  - data
                additionalProperties: false
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '409':
          description: Conflict (incl. idempotency conflicts)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    ErrorEnvelope:
      type: object
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            fields:
              type: object
              additionalProperties:
                type: string
            doc_url:
              type: string
              format: uri
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````