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

Function buildDeleteWatchUrl

apps/sim/tools/google_forms/utils.ts:91–95  ·  view source on GitHub ↗
(formId: string, watchId: string)

Source from the content-addressed store, hash-verified

89}
90
91export function buildDeleteWatchUrl(formId: string, watchId: string): string {
92 const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}/watches/${encodeURIComponent(watchId)}`
93 logger.debug('Built Google Forms delete watch URL', { finalUrl })
94 return finalUrl
95}
96
97export function buildRenewWatchUrl(formId: string, watchId: string): string {
98 const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}/watches/${encodeURIComponent(watchId)}:renew`

Callers 1

delete_watch.tsFile · 0.90

Calls 1

debugMethod · 0.80

Tested by

no test coverage detected