Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.25 KB

File metadata and controls

32 lines (25 loc) · 1.25 KB

WebhookPost

Properties

Name Type Description Notes
name string A human-readable name for your webhook [optional] [default to undefined]
url string The URL of the remote webhook [default to undefined]
secret string If sign is true, and the secret attribute is omitted, LaunchDarkly automatically generates a secret for you. [optional] [default to undefined]
statements Array<StatementPost> [optional] [default to undefined]
sign boolean If sign is false, the webhook does not include a signature header, and the secret can be omitted. [default to undefined]
on boolean Whether or not this webhook is enabled. [default to undefined]
tags Array<string> List of tags for this webhook [optional] [default to undefined]

Example

import { WebhookPost } from 'launchdarkly-api-typescript';

const instance: WebhookPost = {
    name,
    url,
    secret,
    statements,
    sign,
    on,
    tags,
};

[Back to Model list] [Back to API list] [Back to README]