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

# Revoke Resume Share

> Revoke a public resume share link

## Overview

Revoke a public share link. The public viewer at `https://app.mokaru.ai/share/{shareId}` returns 404 immediately after.

<Note>
  **Scope required:** `resume:share` | **Rate limit:** 10 requests/min
</Note>

## Request

```bash theme={null}
DELETE /v1/share/{shareId}
```

### Path Parameters

<ParamField path="shareId" type="string" required>
  Share id to revoke (from Create or List Resume Shares)
</ParamField>

### Example

```bash theme={null}
curl -X DELETE "https://api.mokaru.ai/v1/share/clx_share_abc" \
  -H "Authorization: Bearer mk_your_key"
```

## Response

<ResponseField name="success" type="boolean">Whether the share was revoked.</ResponseField>

```json theme={null}
{ "success": true }
```
