MCPcopy
hub / github.com/simstudioai/sim / buildCreateWatchUrl

Function buildCreateWatchUrl

apps/sim/tools/google_forms/utils.ts:85–89  ·  view source on GitHub ↗
(formId: string)

Source from the content-addressed store, hash-verified

83}
84
85export function buildCreateWatchUrl(formId: string): string {
86 const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}/watches`
87 logger.debug('Built Google Forms create watch URL', { finalUrl })
88 return finalUrl
89}
90
91export function buildDeleteWatchUrl(formId: string, watchId: string): string {
92 const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}/watches/${encodeURIComponent(watchId)}`

Callers 1

create_watch.tsFile · 0.90

Calls 1

debugMethod · 0.80

Tested by

no test coverage detected