Skip to main content

webhook_auth_methods

Creates, updates, deletes, gets or lists a webhook_auth_methods resource.

Overview

Namewebhook_auth_methods
TypeResource
Iddatadog.integrations.webhook_auth_methods

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the auth method. (example: 596da4af-0563-4097-90ff-07230c3f9db3)
attributesobjectAttributes of a webhooks auth method.
relationshipsobjectRelationships of a webhooks auth method to its protocol-specific resource.
typestringWebhooks auth method resource type. (webhooks-auth-method) (default: webhooks-auth-method, example: webhooks-auth-method)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_all_auth_methodsselectincludeGet a list of all auth methods configured for the Webhooks integration in<br />your organization.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
sitestringThe Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both.
includestringComma-separated list of relationships to include in the response.

SELECT examples

Get a list of all auth methods configured for the Webhooks integration in<br />your organization.

SELECT
id,
attributes,
relationships,
type
FROM datadog.integrations.webhook_auth_methods
WHERE include = '{{ include }}'
;