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
      • PUTSet graph ontology
      • GETList graph ontology
      • POSTAdd Data
      • POSTAdd Data in batch mode
      • POSTAdd Fact Triple
      • POSTClone graph
      • POSTCreate Graph
      • GETList all graphs.
      • POSTDetect Patterns (Experimental)
      • POSTSearch Graph
      • GETGet Graph
      • DELDelete Graph
      • PATCHUpdate Graph.
        • GETList Custom Instructions
        • POSTAdd Custom Instructions
        • DELDelete Custom Instructions
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceGraphCustom Instructions

Delete Custom Instructions

DELETE
https://api.getzep.com/api/v2/custom-instructions
DELETE
/api/v2/custom-instructions
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.graph.delete_custom_instructions()
1{
2 "message": "string"
3}
Deletes custom instructions for graphs or project wide defaults.
Was this page helpful?
Previous

Get Graph Observations

Next
Built with

Request

The instructions to delete
graph_idslist of stringsOptional

Determines which group graphs will have their custom instructions deleted. If no graphs are provided, the project-wide custom instructions will be affected.

instruction_nameslist of stringsOptional
Unique identifier for the instructions to be deleted. If empty deletes all instructions.
user_idslist of stringsOptional

Determines which user graphs will have their custom instructions deleted. If no users are provided, the project-wide custom instructions will be affected.

Response

Instructions deleted successfully
messagestring

Errors

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