Python
import requests url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/playground-conversations/{conversation_id}/unshare/" headers = {"Authorization": "Bearer <token>"} response = requests.post(url, headers=headers) print(response.text)
{ "status": "ok", "is_shared": false }
Remove sharing from a conversation.
When unshared:
Access Control:
Documentation IndexFetch the complete documentation index at: https://docs.clarifeye.ai/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.clarifeye.ai/llms.txt
Use this file to discover all available pages before exploring further.
Use Authorization: Bearer
UUID of the project
UUID of the conversation
Conversation unshared successfully
"ok"
false