Get started with LangWatch Skills in seconds: Set up evals, scenario tests, and tracing just by asking your AI coding assistant.
import requests
url = "https://app.langwatch.ai/api/trace/{id}/unshare"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text){
"message": "<string>"
}Deletes a public path for a trace
import requests
url = "https://app.langwatch.ai/api/trace/{id}/unshare"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text){
"message": "<string>"
}Was this page helpful?