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

# Delete Proxy User ACL Record

> Allows a user to delete an existing Proxy User ACL associated with their account.
This permanently removes the ACL record from the database.




## OpenAPI

````yaml delete /public/user/proxy_user_acl/delete/{proxy_user_acl_id}
openapi: 3.0.1
info:
  title: Byteful Public User API
  description: Public API used for third-party usage.
  termsOfService: https://byteful.com
  contact:
    url: https://byteful.com
    email: developer@byteful.com
  version: '1.0'
  x-logo:
    altText: Byteful
    backgroundColor: '#6354eb'
    url: >-
      https://pbs.twimg.com/profile_banners/1038803520605118464/1729783007/1500x500
servers:
  - url: https://api.byteful.com/1.0/
security: []
paths:
  /public/user/proxy_user_acl/delete/{proxy_user_acl_id}:
    delete:
      tags:
        - Proxy User ACL
      summary: Delete Proxy User ACL Record
      description: >
        Allows a user to delete an existing Proxy User ACL associated with their
        account.

        This permanently removes the ACL record from the database.
      parameters:
        - name: proxy_user_acl_id
          in: path
          description: ID of the Proxy User ACL record to delete.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Proxy User ACL Successfully Deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  deleted:
                    type: array
                    description: List of Proxy User ACL IDs that were successfully deleted.
                    example:
                      - 550e8400-e29b-41d4-a716-446655440000
                    items:
                      type: string
                      description: The Proxy User ACL ID.
                  message:
                    type: string
                    description: Success message indicating the ACL was deleted.
                    example: Proxy User ACL deletion successful.
      security:
        - ApiKeyAuth: []
components: {}

````