ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
18 lines (17 loc) • 487 B
TypeScript
import { ApiRole } from './ApiRole';
import { WebhookRoute } from './WebhookRoute';
export interface Webhook {
ID?: string;
Name: string;
Description?: string;
Url?: string;
HashKey?: string;
ElevatedRoles?: ApiRole[];
ConfigData?: any;
BeforeProcessRequest?: boolean;
ApiClientIDs?: string[];
WebhookRoutes?: WebhookRoute[];
DeliveryConfigID?: string;
CustomAuthHeaderName?: string;
CustomAuthHeaderValue?: string;
}