Skip to main content
DELETE
/
v1
/
share
/
{shareId}
Revoke Resume Share
curl --request DELETE \
  --url https://api.mokaru.ai/v1/share/{shareId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

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.

Overview

Revoke a public share link. The public viewer at https://app.mokaru.ai/share/{shareId} returns 404 immediately after.
Scope required: resume:share | Rate limit: 10 requests/min

Request

DELETE /v1/share/{shareId}

Example

curl -X DELETE "https://api.mokaru.ai/v1/share/clx_share_abc" \
  -H "Authorization: Bearer mk_your_key"

Response

success
boolean
Whether the share was revoked.
{ "success": true }