Python
import requests
url = "https://app.langwatch.ai/api/groups/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.langwatch.ai/api/groups/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request DELETE \
--url https://app.langwatch.ai/api/groups/{id} \
--header 'Authorization: Bearer <token>'Groups
Delete group
Delete a group
DELETE
/
api
/
groups
/
{id}
Python
import requests
url = "https://app.langwatch.ai/api/groups/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.langwatch.ai/api/groups/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request DELETE \
--url https://app.langwatch.ai/api/groups/{id} \
--header 'Authorization: Bearer <token>'Last modified on June 9, 2026
Was this page helpful?