MCPcopy Index your code
hub / github.com/AgentOps-AI/agentops / delete

Method delete

agentops/client/api/base.py:149–160  ·  view source on GitHub ↗

Make async DELETE request Args: path: API endpoint path headers: Request headers Returns: JSON response as dictionary, or None if request failed

(self, path: str, headers: Dict[str, str])

Source from the content-addressed store, hash-verified

147 return await self.async_request("put", path, data=data, headers=headers)
148
149 async def delete(self, path: str, headers: Dict[str, str]) -> Optional[Dict[str, Any]]:
150 """
151 Make async DELETE request
152
153 Args:
154 path: API endpoint path
155 headers: Request headers
156
157 Returns:
158 JSON response as dictionary, or None if request failed
159 """
160 return await self.async_request("delete", path, headers=headers)

Callers

nothing calls this directly

Calls 1

async_requestMethod · 0.95

Tested by

no test coverage detected