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

# Remove a URL from all scopes

> Unmap ``url`` from every scope that references it; a url that was never mapped
is a loud 404 (a typo, not a silent success).



## OpenAPI

````yaml /openapi.json delete /api/auth/scopes/urls
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 0.1.1
servers: []
security: []
paths:
  /api/auth/scopes/urls:
    delete:
      tags:
        - access-control
      summary: Remove a URL from all scopes
      description: >-
        Unmap ``url`` from every scope that references it; a url that was never
        mapped

        is a loud 404 (a typo, not a silent success).
      operationId: delete_api_auth_scopes_urls
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScopeUrlRemove'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                required:
                  - data
                type: object
          description: Success.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Malformed request.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Resource not found.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    ScopeUrlRemove:
      description: Remove a URL from every scope that references it.
      properties:
        url:
          title: Url
          type: string
      required:
        - url
      title: ScopeUrlRemove
      type: object
    Error:
      properties:
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````