For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PlaygroundDiscordStatusDashboardSign Up >
DocumentationSDK ReferenceGraphiti
DocumentationSDK ReferenceGraphiti
  • SDK Reference
      • POSTCreate Context Template
      • GETGet Context Template
      • PUTUpdate Context Template
      • GETList Context Templates
      • DELDelete Context Template
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceContext

Delete Context Template

DELETE
https://api.getzep.com/api/v2/context-templates/:template_id
DELETE
/api/v2/context-templates/:template_id
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.context.delete_context_template(
7 template_id="template_id",
8)
1{
2 "message": "string"
3}

Deletes a context template by template_id.

Was this page helpful?
Previous

Set graph ontology

Next
Built with

Path parameters

template_idstringRequired
Template ID

Response

Template deleted successfully
messagestring

Errors

400
Bad Request Error
404
Not Found Error
500
Internal Server Error