MCPcopy Create free account
hub / github.com/triggerdotdev/trigger.dev / get

Method get

integrations/typeform/src/webhooks.ts:82–103  ·  view source on GitHub ↗
(key: IntegrationTaskKey, params: GetWebhookParams)

Source from the content-addressed store, hash-verified

80 }
81
82 get(key: IntegrationTaskKey, params: GetWebhookParams): Promise<GetWebhookResponse> {
83 return this.runTask(
84 key,
85 async (client, task) => {
86 return client.webhooks.get(params);
87 },
88 {
89 name: "Get Webhook",
90 params,
91 properties: [
92 {
93 label: "Form ID",
94 text: params.uid,
95 },
96 {
97 label: "Tag",
98 text: params.tag,
99 },
100 ],
101 }
102 );
103 }
104
105 delete(key: IntegrationTaskKey, params: DeleteWebhookParams): Promise<DeleteWebhookResponse> {
106 return this.runTask(

Callers

nothing calls this directly

Calls 1

runTaskMethod · 0.45

Tested by

no test coverage detected