Method
delete
(key: IntegrationTaskKey, params: DeleteWebhookParams)
Source from the content-addressed store, hash-verified
| 103 | } |
| 104 | |
| 105 | delete(key: IntegrationTaskKey, params: DeleteWebhookParams): Promise<DeleteWebhookResponse> { |
| 106 | return this.runTask( |
| 107 | key, |
| 108 | async (client, task) => { |
| 109 | return client.webhooks.delete(params); |
| 110 | }, |
| 111 | { |
| 112 | name: "Delete Webhook", |
| 113 | params, |
| 114 | properties: [ |
| 115 | { |
| 116 | label: "Form ID", |
| 117 | text: params.uid, |
| 118 | }, |
| 119 | { |
| 120 | label: "Tag", |
| 121 | text: params.tag, |
| 122 | }, |
| 123 | ], |
| 124 | } |
| 125 | ); |
| 126 | } |
| 127 | } |
Callers
nothing calls this directly
Tested by
no test coverage detected