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

# Delete Feature Code

> Delete a feature code and its routing destinations



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json delete /v2/admin/feature-codes/{id}
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/feature-codes/{id}:
    delete:
      tags:
        - Feature Codes
      summary: Delete Feature Code
      description: Delete a feature code and its routing destinations
      parameters:
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: path
          name: id
          required: true
          description: Feature code ID
      responses:
        '200':
          description: Deleted feature code
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: number
                    description: Feature code ID
                  tenantId:
                    type: number
                    description: Tenant ID (0 = global)
                  code:
                    type: string
                    description: Feature code (e.g. *67)
                  numVar:
                    anyOf:
                      - type: string
                      - type: 'null'
                    description: Number variable (EXT/NUM)
                  comment:
                    type: string
                    description: Human-readable description
                  destinations:
                    default: []
                    description: Routing destinations
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Destination target ID
                        destType:
                          type: string
                          description: Destination type
                        order:
                          description: Ordering within the group
                          type: number
                        typeSrc:
                          description: Source routing slot
                          type: string
                        name:
                          description: Destination name
                          anyOf:
                            - type: string
                            - type: 'null'
                        number:
                          description: Destination number
                          anyOf:
                            - type: string
                            - type: 'null'
                      required:
                        - id
                        - destType
                      additionalProperties: {}
                required:
                  - id
                  - tenantId
                  - code
                  - numVar
                  - comment
                  - destinations
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````