@unito/integration-debugger
Version:
The Unito Integration Debugger
16 lines (15 loc) • 511 B
TypeScript
import * as CrawlerDriver from '../crawlerDriver';
/**
* Check: Webhook subscription actions
*
* When an integration supports webhooks, it is assumed that one can PUT on '/webhooks/register'.
* Where '/webhooks/register' would be the configured relative webhook subscription URL set in the registry.
*
*{
* "itemPath": "/users",
* "targetUrl": "https://integrations-platform.unito.io/webhooks/receive",
* "action": "start"
*}
*/
declare const check: CrawlerDriver.StepCheck;
export default check;