MCPcopy Index your code
hub / github.com/TaskingAI/TaskingAI / delete_bundle_instance

Function delete_bundle_instance

backend/tests/api_services/tool/plugin.py:47–52  ·  view source on GitHub ↗
(bundle_instance_id: str)

Source from the content-addressed store, hash-verified

45
46# For DELETE /{project_id}/bundle_instances/{bundle_instance_id}
47async def delete_bundle_instance(bundle_instance_id: str):
48 headers = get_headers(CONFIG.Authentication)
49 async with aiohttp.ClientSession(headers=headers) as session:
50 request_url = f"{BUNDLE_INSTANCE_BASE_URL}/{bundle_instance_id}"
51 response = await session.delete(request_url)
52 return ResponseWrapper(response.status, await response.json())
53
54
55async def list_bundles(params: Dict):

Calls 4

get_headersFunction · 0.90
ResponseWrapperClass · 0.90
deleteMethod · 0.45
jsonMethod · 0.45

Tested by 1