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

# Revoke Permission

> Remove a single grant.

Revoking is a soft delete. The grant stops taking effect immediately and disappears from [List Permissions](/platform-api/permissions/catalog/list), but the row is retained with the actor and timestamp for the audit trail.

```bash theme={null}
curl --request DELETE \
  --url https://api.nekt.ai/api/v1/permissions/6f2a9c4b-2a10-4e7f-9c54-d2a9b1d28b0e/ \
  --header "x-api-key: YOUR_API_KEY"
```

Returns `204 No Content`.

<Warning>
  Revoking a Catalog grant also removes the cloud-level data access derived from it. The member loses the ability to query the affected tables, not just the ability to see them in the app.
</Warning>

## Who can call it

An API key created by an Owner or Admin can revoke any grant. A key created by a Member can only revoke `viewer` and `editor` grants, and only on a resource where that Member holds `manager`.

## Related

* [Assign Permissions](/platform-api/permissions/catalog/assign) — revoke in bulk by sending `permission_level: null`.


## OpenAPI

````yaml DELETE /api/v1/permissions/{id}/
openapi: 3.0.3
info:
  title: Nekt API
  version: v1
  description: Nekt API Documentation
  contact:
    email: support@nekt.ai
servers:
  - url: https://api.nekt.ai
security: []
paths:
  /api/v1/permissions/{id}/:
    delete:
      tags:
        - v1
      operationId: v1_permissions_destroy
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          description: A UUID string identifying this Lakehouse permission.
          required: true
      responses:
        '204':
          description: No response body
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API Key authentication. Format: ''x-api-key: api_key'''

````