MCPcopy Create free account
hub / github.com/astercloud/aster / execute

Function execute

ui/src/composables/useAsterClient.ts:131–137  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

129 return response.status === 204 ? { success: true } : response.json();
130 },
131 async execute(id: string) {
132 const response = await fetch(`${baseUrl}/v1/workflows/${id}/execute`, {
133 method: "POST",
134 headers: buildHeaders(),
135 });
136 return response.json();
137 },
138 },
139 rooms: {
140 async list() {

Callers

nothing calls this directly

Calls 1

buildHeadersFunction · 0.85

Tested by

no test coverage detected