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

# Eliminar la lista de acceso por IP

<div id="permissions">
  ## Permisos
</div>

Requiere un usuario de servicio con el permiso `ManageIPWhitelist` a nivel Enterprise.


## OpenAPI

````yaml es/v3-openapi.yaml DELETE /v3/enterprise/ip-access-list
openapi: 3.1.0
info:
  description: API de Devin v3 con autenticación mediante usuario de servicio y RBAC
  title: Devin API v3
  version: 3.0.0
servers: []
security:
  - bearerAuth: []
paths:
  /v3/enterprise/ip-access-list:
    delete:
      tags:
        - ip-access-list
      summary: Eliminar la lista de acceso por IP
      operationId: handle_clear_ip_access_list_v3_enterprise_ip_access_list_delete
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IpAccessListResponse'
          description: Respuesta correcta
components:
  schemas:
    IpAccessListResponse:
      properties:
        ip_ranges:
          items:
            type: string
          title: Ip Ranges
          type: array
      required:
        - ip_ranges
      title: IpAccessListResponse
      type: object
  securitySchemes:
    bearerAuth:
      description: 'Credencial de usuario de servicio (prefijo: cog_)'
      scheme: bearer
      type: http

````