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

# Delete SIP Endpoint

> Hard-deletes the endpoint. The `sip_uri` immediately starts returning
404 for any inbound call. Calls already in progress finish normally.
To rotate access, delete the endpoint and create a new one — the new
endpoint will have a fresh random slug.


Hard-deletes the endpoint. The `sip_uri` immediately starts returning 404
for any new inbound call. Calls already bridged finish normally.

The slug becomes available for reuse, but since slugs are generated
server-side with 24 random characters, you'll never actually re-encounter
the same slug — every new endpoint gets a fresh one.

Use delete + create as the rotation mechanism: if a URI leaks, delete the
endpoint, create a new one, push the new URI to the customer's PBX.


## OpenAPI

````yaml DELETE /sip-endpoints/{id}
openapi: 3.1.0
info:
  title: Yappr API
  description: >
    Create and manage AI voice agents, purchase phone numbers, configure tools,
    and initiate calls — all via REST.
  version: 1.0.0
  contact:
    url: https://goyappr.com
servers:
  - url: https://api.goyappr.com
    description: Production
security:
  - apiKey: []
paths:
  /sip-endpoints/{id}:
    delete:
      tags:
        - SIP Endpoints
      summary: Delete SIP endpoint
      description: |
        Hard-deletes the endpoint. The `sip_uri` immediately starts returning
        404 for any inbound call. Calls already in progress finish normally.
        To rotate access, delete the endpoint and create a new one — the new
        endpoint will have a fresh random slug.
      operationId: deleteSipEndpoint
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: SIP endpoint deleted
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Your Yappr API key (e.g. `ypr_live_...`). Generate one in the dashboard
        under **Settings → API Keys**.

````