Skip to main content
DELETE
/
spotlight
/
analytics
/
sessions
/
{sessionUuid}
/
share
Remove Sharing
curl --request DELETE \
  --url https://api.app.shinzo.ai/spotlight/analytics/sessions/{sessionUuid}/share \
  --header 'Authorization: Bearer <token>'

Documentation Index

Fetch the complete documentation index at: https://docs.shinzo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authentication

Requires JWT token authentication.

Path Parameters

sessionUuid
string
required
The session UUID to remove sharing from

Example Request

curl -X DELETE https://api.app.shinzo.ai/spotlight/analytics/sessions/sess_abc123/share \
  -H "Authorization: Bearer <jwt_token>"

Response

{
  "message": "Sharing removed successfully",
  "session_uuid": "sess_abc123"
}

Status Codes

CodeDescription
200Success
401Unauthorized - invalid or missing JWT token
404Session not found