curl --request DELETE \
--url https://api.app.shinzo.ai/spotlight/analytics/sessions/{sessionUuid}/share \
--header 'Authorization: Bearer <token>'Remove the shareable link for a session.
curl --request DELETE \
--url https://api.app.shinzo.ai/spotlight/analytics/sessions/{sessionUuid}/share \
--header 'Authorization: Bearer <token>'curl -X DELETE https://api.app.shinzo.ai/spotlight/analytics/sessions/sess_abc123/share \
-H "Authorization: Bearer <jwt_token>"
{
"message": "Sharing removed successfully",
"session_uuid": "sess_abc123"
}
| Code | Description |
|---|---|
200 | Success |
401 | Unauthorized - invalid or missing JWT token |
404 | Session not found |