1. Packages
  2. Packages
  3. Dynatrace
  4. API Docs
  5. WebhookNotification
Viewing docs for Dynatrace v0.36.0
published on Tuesday, Jun 9, 2026 by Pulumiverse
dynatrace logo
Viewing docs for Dynatrace v0.36.0
published on Tuesday, Jun 9, 2026 by Pulumiverse

    This resource requires the API token scopes Read settings (settings.read) and Write settings (settings.write)

    Dynatrace Documentation

    • Web Hook integration - https://www.dynatrace.com/support/help/setup-and-configuration/integrations/problem-notifications/webhook-integration

    • Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: builtin:problem.notifications)

    Export Example Usage

    • terraform-provider-dynatrace -export dynatrace.WebhookNotification downloads the existing problem notifications via Web Hook

    The full documentation of the export feature is available here.

    Create WebhookNotification Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WebhookNotification(name: string, args: WebhookNotificationArgs, opts?: CustomResourceOptions);
    @overload
    def WebhookNotification(resource_name: str,
                            args: WebhookNotificationArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def WebhookNotification(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            active: Optional[bool] = None,
                            profile: Optional[str] = None,
                            payload: Optional[str] = None,
                            legacy_id: Optional[str] = None,
                            name: Optional[str] = None,
                            notify_closed_problems: Optional[bool] = None,
                            notify_event_merges: Optional[bool] = None,
                            oauth2_credentials: Optional[WebhookNotificationOauth2CredentialsArgs] = None,
                            insecure: Optional[bool] = None,
                            headers: Optional[WebhookNotificationHeadersArgs] = None,
                            secret_url: Optional[str] = None,
                            url: Optional[str] = None,
                            url_contains_secret: Optional[bool] = None,
                            use_oauth2: Optional[bool] = None)
    func NewWebhookNotification(ctx *Context, name string, args WebhookNotificationArgs, opts ...ResourceOption) (*WebhookNotification, error)
    public WebhookNotification(string name, WebhookNotificationArgs args, CustomResourceOptions? opts = null)
    public WebhookNotification(String name, WebhookNotificationArgs args)
    public WebhookNotification(String name, WebhookNotificationArgs args, CustomResourceOptions options)
    
    type: dynatrace:WebhookNotification
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "dynatrace_webhooknotification" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args WebhookNotificationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args WebhookNotificationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args WebhookNotificationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WebhookNotificationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WebhookNotificationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var webhookNotificationResource = new Dynatrace.WebhookNotification("webhookNotificationResource", new()
    {
        Active = false,
        Profile = "string",
        Payload = "string",
        LegacyId = "string",
        Name = "string",
        NotifyClosedProblems = false,
        NotifyEventMerges = false,
        Oauth2Credentials = new Dynatrace.Inputs.WebhookNotificationOauth2CredentialsArgs
        {
            AccessTokenUrl = "string",
            ClientId = "string",
            ClientSecret = "string",
            AuthenticateViaRequestHeader = false,
            Scope = "string",
        },
        Insecure = false,
        Headers = new Dynatrace.Inputs.WebhookNotificationHeadersArgs
        {
            Headers = new[]
            {
                new Dynatrace.Inputs.WebhookNotificationHeadersHeaderArgs
                {
                    Name = "string",
                    SecretValue = "string",
                    Value = "string",
                },
            },
        },
        SecretUrl = "string",
        Url = "string",
        UrlContainsSecret = false,
        UseOauth2 = false,
    });
    
    example, err := dynatrace.NewWebhookNotification(ctx, "webhookNotificationResource", &dynatrace.WebhookNotificationArgs{
    	Active:               pulumi.Bool(false),
    	Profile:              pulumi.String("string"),
    	Payload:              pulumi.String("string"),
    	LegacyId:             pulumi.String("string"),
    	Name:                 pulumi.String("string"),
    	NotifyClosedProblems: pulumi.Bool(false),
    	NotifyEventMerges:    pulumi.Bool(false),
    	Oauth2Credentials: &dynatrace.WebhookNotificationOauth2CredentialsArgs{
    		AccessTokenUrl:               pulumi.String("string"),
    		ClientId:                     pulumi.String("string"),
    		ClientSecret:                 pulumi.String("string"),
    		AuthenticateViaRequestHeader: pulumi.Bool(false),
    		Scope:                        pulumi.String("string"),
    	},
    	Insecure: pulumi.Bool(false),
    	Headers: &dynatrace.WebhookNotificationHeadersArgs{
    		Headers: dynatrace.WebhookNotificationHeadersHeaderArray{
    			&dynatrace.WebhookNotificationHeadersHeaderArgs{
    				Name:        pulumi.String("string"),
    				SecretValue: pulumi.String("string"),
    				Value:       pulumi.String("string"),
    			},
    		},
    	},
    	SecretUrl:         pulumi.String("string"),
    	Url:               pulumi.String("string"),
    	UrlContainsSecret: pulumi.Bool(false),
    	UseOauth2:         pulumi.Bool(false),
    })
    
    resource "dynatrace_webhooknotification" "webhookNotificationResource" {
      active                 = false
      profile                = "string"
      payload                = "string"
      legacy_id              = "string"
      name                   = "string"
      notify_closed_problems = false
      notify_event_merges    = false
      oauth2_credentials = {
        access_token_url                = "string"
        client_id                       = "string"
        client_secret                   = "string"
        authenticate_via_request_header = false
        scope                           = "string"
      }
      insecure = false
      headers = {
        headers = [{
          "name"        = "string"
          "secretValue" = "string"
          "value"       = "string"
        }]
      }
      secret_url          = "string"
      url                 = "string"
      url_contains_secret = false
      use_oauth2          = false
    }
    
    var webhookNotificationResource = new WebhookNotification("webhookNotificationResource", WebhookNotificationArgs.builder()
        .active(false)
        .profile("string")
        .payload("string")
        .legacyId("string")
        .name("string")
        .notifyClosedProblems(false)
        .notifyEventMerges(false)
        .oauth2Credentials(WebhookNotificationOauth2CredentialsArgs.builder()
            .accessTokenUrl("string")
            .clientId("string")
            .clientSecret("string")
            .authenticateViaRequestHeader(false)
            .scope("string")
            .build())
        .insecure(false)
        .headers(WebhookNotificationHeadersArgs.builder()
            .headers(WebhookNotificationHeadersHeaderArgs.builder()
                .name("string")
                .secretValue("string")
                .value("string")
                .build())
            .build())
        .secretUrl("string")
        .url("string")
        .urlContainsSecret(false)
        .useOauth2(false)
        .build());
    
    webhook_notification_resource = dynatrace.WebhookNotification("webhookNotificationResource",
        active=False,
        profile="string",
        payload="string",
        legacy_id="string",
        name="string",
        notify_closed_problems=False,
        notify_event_merges=False,
        oauth2_credentials={
            "access_token_url": "string",
            "client_id": "string",
            "client_secret": "string",
            "authenticate_via_request_header": False,
            "scope": "string",
        },
        insecure=False,
        headers={
            "headers": [{
                "name": "string",
                "secret_value": "string",
                "value": "string",
            }],
        },
        secret_url="string",
        url="string",
        url_contains_secret=False,
        use_oauth2=False)
    
    const webhookNotificationResource = new dynatrace.WebhookNotification("webhookNotificationResource", {
        active: false,
        profile: "string",
        payload: "string",
        legacyId: "string",
        name: "string",
        notifyClosedProblems: false,
        notifyEventMerges: false,
        oauth2Credentials: {
            accessTokenUrl: "string",
            clientId: "string",
            clientSecret: "string",
            authenticateViaRequestHeader: false,
            scope: "string",
        },
        insecure: false,
        headers: {
            headers: [{
                name: "string",
                secretValue: "string",
                value: "string",
            }],
        },
        secretUrl: "string",
        url: "string",
        urlContainsSecret: false,
        useOauth2: false,
    });
    
    type: dynatrace:WebhookNotification
    properties:
        active: false
        headers:
            headers:
                - name: string
                  secretValue: string
                  value: string
        insecure: false
        legacyId: string
        name: string
        notifyClosedProblems: false
        notifyEventMerges: false
        oauth2Credentials:
            accessTokenUrl: string
            authenticateViaRequestHeader: false
            clientId: string
            clientSecret: string
            scope: string
        payload: string
        profile: string
        secretUrl: string
        url: string
        urlContainsSecret: false
        useOauth2: false
    

    WebhookNotification Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The WebhookNotification resource accepts the following input properties:

    Active bool
    This setting is enabled (true) or disabled (false)
    Payload string
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    Profile string
    The ID of the associated alerting profile
    Headers Pulumiverse.Dynatrace.Inputs.WebhookNotificationHeaders
    A list of the additional HTTP headers.
    Insecure bool
    Accept any SSL certificate (including self-signed and invalid certificates)
    LegacyId string
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    Name string
    The name of the notification configuration.
    NotifyClosedProblems bool
    Call webhook if problem is closed
    NotifyEventMerges bool
    Call webhook if new events merge into existing problems
    Oauth2Credentials Pulumiverse.Dynatrace.Inputs.WebhookNotificationOauth2Credentials

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    SecretUrl string
    The secret URL of the webhook endpoint.
    Url string
    The URL of the webhook endpoint.
    UrlContainsSecret bool
    Secret webhook URL
    UseOauth2 bool
    Use OAuth 2.0 for authentication
    Active bool
    This setting is enabled (true) or disabled (false)
    Payload string
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    Profile string
    The ID of the associated alerting profile
    Headers WebhookNotificationHeadersArgs
    A list of the additional HTTP headers.
    Insecure bool
    Accept any SSL certificate (including self-signed and invalid certificates)
    LegacyId string
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    Name string
    The name of the notification configuration.
    NotifyClosedProblems bool
    Call webhook if problem is closed
    NotifyEventMerges bool
    Call webhook if new events merge into existing problems
    Oauth2Credentials WebhookNotificationOauth2CredentialsArgs

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    SecretUrl string
    The secret URL of the webhook endpoint.
    Url string
    The URL of the webhook endpoint.
    UrlContainsSecret bool
    Secret webhook URL
    UseOauth2 bool
    Use OAuth 2.0 for authentication
    active bool
    This setting is enabled (true) or disabled (false)
    payload string
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    profile string
    The ID of the associated alerting profile
    headers object
    A list of the additional HTTP headers.
    insecure bool
    Accept any SSL certificate (including self-signed and invalid certificates)
    legacy_id string
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    name string
    The name of the notification configuration.
    notify_closed_problems bool
    Call webhook if problem is closed
    notify_event_merges bool
    Call webhook if new events merge into existing problems
    oauth2_credentials object

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    secret_url string
    The secret URL of the webhook endpoint.
    url string
    The URL of the webhook endpoint.
    url_contains_secret bool
    Secret webhook URL
    use_oauth2 bool
    Use OAuth 2.0 for authentication
    active Boolean
    This setting is enabled (true) or disabled (false)
    payload String
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    profile String
    The ID of the associated alerting profile
    headers WebhookNotificationHeaders
    A list of the additional HTTP headers.
    insecure Boolean
    Accept any SSL certificate (including self-signed and invalid certificates)
    legacyId String
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    name String
    The name of the notification configuration.
    notifyClosedProblems Boolean
    Call webhook if problem is closed
    notifyEventMerges Boolean
    Call webhook if new events merge into existing problems
    oauth2Credentials WebhookNotificationOauth2Credentials

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    secretUrl String
    The secret URL of the webhook endpoint.
    url String
    The URL of the webhook endpoint.
    urlContainsSecret Boolean
    Secret webhook URL
    useOauth2 Boolean
    Use OAuth 2.0 for authentication
    active boolean
    This setting is enabled (true) or disabled (false)
    payload string
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    profile string
    The ID of the associated alerting profile
    headers WebhookNotificationHeaders
    A list of the additional HTTP headers.
    insecure boolean
    Accept any SSL certificate (including self-signed and invalid certificates)
    legacyId string
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    name string
    The name of the notification configuration.
    notifyClosedProblems boolean
    Call webhook if problem is closed
    notifyEventMerges boolean
    Call webhook if new events merge into existing problems
    oauth2Credentials WebhookNotificationOauth2Credentials

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    secretUrl string
    The secret URL of the webhook endpoint.
    url string
    The URL of the webhook endpoint.
    urlContainsSecret boolean
    Secret webhook URL
    useOauth2 boolean
    Use OAuth 2.0 for authentication
    active bool
    This setting is enabled (true) or disabled (false)
    payload str
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    profile str
    The ID of the associated alerting profile
    headers WebhookNotificationHeadersArgs
    A list of the additional HTTP headers.
    insecure bool
    Accept any SSL certificate (including self-signed and invalid certificates)
    legacy_id str
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    name str
    The name of the notification configuration.
    notify_closed_problems bool
    Call webhook if problem is closed
    notify_event_merges bool
    Call webhook if new events merge into existing problems
    oauth2_credentials WebhookNotificationOauth2CredentialsArgs

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    secret_url str
    The secret URL of the webhook endpoint.
    url str
    The URL of the webhook endpoint.
    url_contains_secret bool
    Secret webhook URL
    use_oauth2 bool
    Use OAuth 2.0 for authentication
    active Boolean
    This setting is enabled (true) or disabled (false)
    payload String
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    profile String
    The ID of the associated alerting profile
    headers Property Map
    A list of the additional HTTP headers.
    insecure Boolean
    Accept any SSL certificate (including self-signed and invalid certificates)
    legacyId String
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    name String
    The name of the notification configuration.
    notifyClosedProblems Boolean
    Call webhook if problem is closed
    notifyEventMerges Boolean
    Call webhook if new events merge into existing problems
    oauth2Credentials Property Map

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    secretUrl String
    The secret URL of the webhook endpoint.
    url String
    The URL of the webhook endpoint.
    urlContainsSecret Boolean
    Secret webhook URL
    useOauth2 Boolean
    Use OAuth 2.0 for authentication

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WebhookNotification resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing WebhookNotification Resource

    Get an existing WebhookNotification resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: WebhookNotificationState, opts?: CustomResourceOptions): WebhookNotification
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            active: Optional[bool] = None,
            headers: Optional[WebhookNotificationHeadersArgs] = None,
            insecure: Optional[bool] = None,
            legacy_id: Optional[str] = None,
            name: Optional[str] = None,
            notify_closed_problems: Optional[bool] = None,
            notify_event_merges: Optional[bool] = None,
            oauth2_credentials: Optional[WebhookNotificationOauth2CredentialsArgs] = None,
            payload: Optional[str] = None,
            profile: Optional[str] = None,
            secret_url: Optional[str] = None,
            url: Optional[str] = None,
            url_contains_secret: Optional[bool] = None,
            use_oauth2: Optional[bool] = None) -> WebhookNotification
    func GetWebhookNotification(ctx *Context, name string, id IDInput, state *WebhookNotificationState, opts ...ResourceOption) (*WebhookNotification, error)
    public static WebhookNotification Get(string name, Input<string> id, WebhookNotificationState? state, CustomResourceOptions? opts = null)
    public static WebhookNotification get(String name, Output<String> id, WebhookNotificationState state, CustomResourceOptions options)
    resources:  _:    type: dynatrace:WebhookNotification    get:      id: ${id}
    import {
      to = dynatrace_webhooknotification.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Active bool
    This setting is enabled (true) or disabled (false)
    Headers Pulumiverse.Dynatrace.Inputs.WebhookNotificationHeaders
    A list of the additional HTTP headers.
    Insecure bool
    Accept any SSL certificate (including self-signed and invalid certificates)
    LegacyId string
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    Name string
    The name of the notification configuration.
    NotifyClosedProblems bool
    Call webhook if problem is closed
    NotifyEventMerges bool
    Call webhook if new events merge into existing problems
    Oauth2Credentials Pulumiverse.Dynatrace.Inputs.WebhookNotificationOauth2Credentials

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    Payload string
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    Profile string
    The ID of the associated alerting profile
    SecretUrl string
    The secret URL of the webhook endpoint.
    Url string
    The URL of the webhook endpoint.
    UrlContainsSecret bool
    Secret webhook URL
    UseOauth2 bool
    Use OAuth 2.0 for authentication
    Active bool
    This setting is enabled (true) or disabled (false)
    Headers WebhookNotificationHeadersArgs
    A list of the additional HTTP headers.
    Insecure bool
    Accept any SSL certificate (including self-signed and invalid certificates)
    LegacyId string
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    Name string
    The name of the notification configuration.
    NotifyClosedProblems bool
    Call webhook if problem is closed
    NotifyEventMerges bool
    Call webhook if new events merge into existing problems
    Oauth2Credentials WebhookNotificationOauth2CredentialsArgs

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    Payload string
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    Profile string
    The ID of the associated alerting profile
    SecretUrl string
    The secret URL of the webhook endpoint.
    Url string
    The URL of the webhook endpoint.
    UrlContainsSecret bool
    Secret webhook URL
    UseOauth2 bool
    Use OAuth 2.0 for authentication
    active bool
    This setting is enabled (true) or disabled (false)
    headers object
    A list of the additional HTTP headers.
    insecure bool
    Accept any SSL certificate (including self-signed and invalid certificates)
    legacy_id string
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    name string
    The name of the notification configuration.
    notify_closed_problems bool
    Call webhook if problem is closed
    notify_event_merges bool
    Call webhook if new events merge into existing problems
    oauth2_credentials object

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    payload string
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    profile string
    The ID of the associated alerting profile
    secret_url string
    The secret URL of the webhook endpoint.
    url string
    The URL of the webhook endpoint.
    url_contains_secret bool
    Secret webhook URL
    use_oauth2 bool
    Use OAuth 2.0 for authentication
    active Boolean
    This setting is enabled (true) or disabled (false)
    headers WebhookNotificationHeaders
    A list of the additional HTTP headers.
    insecure Boolean
    Accept any SSL certificate (including self-signed and invalid certificates)
    legacyId String
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    name String
    The name of the notification configuration.
    notifyClosedProblems Boolean
    Call webhook if problem is closed
    notifyEventMerges Boolean
    Call webhook if new events merge into existing problems
    oauth2Credentials WebhookNotificationOauth2Credentials

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    payload String
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    profile String
    The ID of the associated alerting profile
    secretUrl String
    The secret URL of the webhook endpoint.
    url String
    The URL of the webhook endpoint.
    urlContainsSecret Boolean
    Secret webhook URL
    useOauth2 Boolean
    Use OAuth 2.0 for authentication
    active boolean
    This setting is enabled (true) or disabled (false)
    headers WebhookNotificationHeaders
    A list of the additional HTTP headers.
    insecure boolean
    Accept any SSL certificate (including self-signed and invalid certificates)
    legacyId string
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    name string
    The name of the notification configuration.
    notifyClosedProblems boolean
    Call webhook if problem is closed
    notifyEventMerges boolean
    Call webhook if new events merge into existing problems
    oauth2Credentials WebhookNotificationOauth2Credentials

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    payload string
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    profile string
    The ID of the associated alerting profile
    secretUrl string
    The secret URL of the webhook endpoint.
    url string
    The URL of the webhook endpoint.
    urlContainsSecret boolean
    Secret webhook URL
    useOauth2 boolean
    Use OAuth 2.0 for authentication
    active bool
    This setting is enabled (true) or disabled (false)
    headers WebhookNotificationHeadersArgs
    A list of the additional HTTP headers.
    insecure bool
    Accept any SSL certificate (including self-signed and invalid certificates)
    legacy_id str
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    name str
    The name of the notification configuration.
    notify_closed_problems bool
    Call webhook if problem is closed
    notify_event_merges bool
    Call webhook if new events merge into existing problems
    oauth2_credentials WebhookNotificationOauth2CredentialsArgs

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    payload str
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    profile str
    The ID of the associated alerting profile
    secret_url str
    The secret URL of the webhook endpoint.
    url str
    The URL of the webhook endpoint.
    url_contains_secret bool
    Secret webhook URL
    use_oauth2 bool
    Use OAuth 2.0 for authentication
    active Boolean
    This setting is enabled (true) or disabled (false)
    headers Property Map
    A list of the additional HTTP headers.
    insecure Boolean
    Accept any SSL certificate (including self-signed and invalid certificates)
    legacyId String
    The ID of these settings when referred to from resources requiring the REST API V1 keys
    name String
    The name of the notification configuration.
    notifyClosedProblems Boolean
    Call webhook if problem is closed
    notifyEventMerges Boolean
    Call webhook if new events merge into existing problems
    oauth2Credentials Property Map

    To authenticate your integration, the OAuth 2.0 Client Credentials Flow (Grant Type) is used. For details see Client Credentials Flow).

    The obtained Access Token is subsequently provided in the Authorization header of the request carrying the notification payload.

    payload String
    The content of the notification message. Type '{' for placeholder suggestions.. #### Available placeholders {ImpactedEntities}: Details about the entities impacted by the problem in form of a json array.
    profile String
    The ID of the associated alerting profile
    secretUrl String
    The secret URL of the webhook endpoint.
    url String
    The URL of the webhook endpoint.
    urlContainsSecret Boolean
    Secret webhook URL
    useOauth2 Boolean
    Use OAuth 2.0 for authentication

    Supporting Types

    WebhookNotificationHeaders, WebhookNotificationHeadersArgs

    Headers List<Pulumiverse.Dynatrace.Inputs.WebhookNotificationHeadersHeader>
    An additional HTTP Header to include when sending requests
    Headers []WebhookNotificationHeadersHeader
    An additional HTTP Header to include when sending requests
    headers list(object)
    An additional HTTP Header to include when sending requests
    headers List<WebhookNotificationHeadersHeader>
    An additional HTTP Header to include when sending requests
    headers WebhookNotificationHeadersHeader[]
    An additional HTTP Header to include when sending requests
    headers Sequence[WebhookNotificationHeadersHeader]
    An additional HTTP Header to include when sending requests
    headers List<Property Map>
    An additional HTTP Header to include when sending requests

    WebhookNotificationHeadersHeader, WebhookNotificationHeadersHeaderArgs

    Name string
    The name of the HTTP header.
    SecretValue string
    The secret value of the HTTP header. May contain an empty value.
    Value string
    The value of the HTTP header. May contain an empty value.
    Name string
    The name of the HTTP header.
    SecretValue string
    The secret value of the HTTP header. May contain an empty value.
    Value string
    The value of the HTTP header. May contain an empty value.
    name string
    The name of the HTTP header.
    secret_value string
    The secret value of the HTTP header. May contain an empty value.
    value string
    The value of the HTTP header. May contain an empty value.
    name String
    The name of the HTTP header.
    secretValue String
    The secret value of the HTTP header. May contain an empty value.
    value String
    The value of the HTTP header. May contain an empty value.
    name string
    The name of the HTTP header.
    secretValue string
    The secret value of the HTTP header. May contain an empty value.
    value string
    The value of the HTTP header. May contain an empty value.
    name str
    The name of the HTTP header.
    secret_value str
    The secret value of the HTTP header. May contain an empty value.
    value str
    The value of the HTTP header. May contain an empty value.
    name String
    The name of the HTTP header.
    secretValue String
    The secret value of the HTTP header. May contain an empty value.
    value String
    The value of the HTTP header. May contain an empty value.

    WebhookNotificationOauth2Credentials, WebhookNotificationOauth2CredentialsArgs

    AccessTokenUrl string
    Access token URL
    ClientId string
    Client ID
    ClientSecret string
    Client secret
    AuthenticateViaRequestHeader bool
    If false, the client credentials are included in the HTTP request body.
    Scope string
    The scope of access you are requesting
    AccessTokenUrl string
    Access token URL
    ClientId string
    Client ID
    ClientSecret string
    Client secret
    AuthenticateViaRequestHeader bool
    If false, the client credentials are included in the HTTP request body.
    Scope string
    The scope of access you are requesting
    access_token_url string
    Access token URL
    client_id string
    Client ID
    client_secret string
    Client secret
    authenticate_via_request_header bool
    If false, the client credentials are included in the HTTP request body.
    scope string
    The scope of access you are requesting
    accessTokenUrl String
    Access token URL
    clientId String
    Client ID
    clientSecret String
    Client secret
    authenticateViaRequestHeader Boolean
    If false, the client credentials are included in the HTTP request body.
    scope String
    The scope of access you are requesting
    accessTokenUrl string
    Access token URL
    clientId string
    Client ID
    clientSecret string
    Client secret
    authenticateViaRequestHeader boolean
    If false, the client credentials are included in the HTTP request body.
    scope string
    The scope of access you are requesting
    access_token_url str
    Access token URL
    client_id str
    Client ID
    client_secret str
    Client secret
    authenticate_via_request_header bool
    If false, the client credentials are included in the HTTP request body.
    scope str
    The scope of access you are requesting
    accessTokenUrl String
    Access token URL
    clientId String
    Client ID
    clientSecret String
    Client secret
    authenticateViaRequestHeader Boolean
    If false, the client credentials are included in the HTTP request body.
    scope String
    The scope of access you are requesting

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Viewing docs for Dynatrace v0.36.0
    published on Tuesday, Jun 9, 2026 by Pulumiverse

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial