MCPcopy Index your code
hub / github.com/outerbase/studio / updateOuterbaseWorkspace

Function updateOuterbaseWorkspace

src/outerbase-cloud/api-workspace.ts:23–28  ·  view source on GitHub ↗
(
  workspaceId: string,
  options: { short_name: string; name: string }
)

Source from the content-addressed store, hash-verified

21}
22
23export function updateOuterbaseWorkspace(
24 workspaceId: string,
25 options: { short_name: string; name: string }
26) {
27 return requestOuterbase(`/api/v1/workspace/${workspaceId}`, "PUT", options);
28}
29
30export function deleteOuterbaseWorkspace(workspaceId: string) {
31 return requestOuterbase(`/api/v1/workspace/${workspaceId}`, "DELETE");

Callers 1

WorkspaceDetailSectionFunction · 0.90

Calls 1

requestOuterbaseFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…