> ## 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.

# Revoke a caller ID

> Revokes a verified caller ID so it can no longer be used as an outbound caller ID. The record is kept (status REVOKED, active false) so historical calls stay attributed; it still appears in GET /v1/caller-ids with active=false. Re-verify the number to use it again.



## OpenAPI

````yaml /openapi.json delete /v1/caller-ids/{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: Appointments
  - name: Contacts
  - name: Documents
  - name: Number Registration
  - name: Sub-entities
  - name: Webhooks
paths:
  /v1/caller-ids/{id}:
    delete:
      tags:
        - Caller IDs
      summary: Revoke a caller ID
      description: >-
        Revokes a verified caller ID so it can no longer be used as an outbound
        caller ID. The record is kept (status REVOKED, active false) so
        historical calls stay attributed; it still appears in GET /v1/caller-ids
        with active=false. Re-verify the number to use it again.
      operationId: v1_caller_ids_id_delete
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: Idempotency-Key
          in: header
          required: false
          description: >-
            UUID — when present, deduplicates repeat submissions. See
            /api-reference/idempotency.
          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:
                      caller_id_id:
                        type: string
                      phone_number:
                        type: string
                      status:
                        type: string
                      verified_at:
                        anyOf:
                          - type: string
                          - type: 'null'
                      certification_method:
                        anyOf:
                          - type: string
                          - type: 'null'
                      cnam_display_name:
                        anyOf:
                          - type: string
                          - type: 'null'
                      cnam_status:
                        anyOf:
                          - type: string
                          - type: 'null'
                      rcd_display_name:
                        anyOf:
                          - type: string
                          - type: 'null'
                      rcd_status:
                        anyOf:
                          - type: string
                          - type: 'null'
                      active:
                        type: boolean
                      created_at:
                        type: string
                      updated_at:
                        type: string
                    required:
                      - caller_id_id
                      - phone_number
                      - status
                      - verified_at
                      - certification_method
                      - cnam_display_name
                      - cnam_status
                      - rcd_display_name
                      - rcd_status
                      - active
                      - created_at
                      - updated_at
                    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

````