Revoke a template share
DELETE
/template/{id}/share/{aclId}
The grantee loses access immediately — including the ability to stamp new toolboxes from it. Toolboxes already stamped are untouched. Requires `can_revoke_share` (`can_share` plus `edit` access) — no `template:manage` fallback.
Path Parameters
idstring
required·
Template id (tpl_…).
aclIdstring
required·
ACL entry id from the share list.
Response Body
successboolean
curl -X DELETE 'https://api.elaichi.ai/template/<id>/share/<aclId>' \
-H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
-H 'Content-Type: application/json'const response = await fetch('https://api.elaichi.ai/template/<id>/share/<aclId>', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);import os
import requests
url = "https://api.elaichi.ai/template/<id>/share/<aclId>"
headers = {
"Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
"Content-Type": "application/json",
}
response = requests.delete(url, headers=headers)
print(response.json())