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

Function updateApiKeys

frontend/src/axios/apiKeys.ts:33–36  ·  view source on GitHub ↗
(id, params: object)

Source from the content-addressed store, hash-verified

31 return await request.get(`${project_base_url}/apikeys/${id}?plain=${plain}`)
32}
33const updateApiKeys = async (id, params: object) => {
34 const project_base_url = `api/v1`
35 return await request.post(`${project_base_url}/apikeys/${id}`, params)
36}
37const deleteApiKeys = async (id) => {
38 const project_base_url = `api/v1`
39 return await request.delete(`${project_base_url}/apikeys/${id}`)

Callers 1

handleCreateConfirmFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected