Skip to main content

team_syncs

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

Overview

Nameteam_syncs
TypeResource
Iddatadog.organization.team_syncs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe sync's identifier (example: aeadc05e-98a8-11ec-ac2c-da7ad0900001)
attributesobjectTeam sync attributes.
typestringTeam sync bulk type. (team_sync_bulk) (example: team_sync_bulk)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_team_syncselectfilter[source]Get all team synchronization configurations.<br />Returns a list of configurations used for linking or provisioning teams with external sources like GitHub.

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
filter[source]stringFilter by the external source platform for team synchronization
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.

SELECT examples

Get all team synchronization configurations.<br />Returns a list of configurations used for linking or provisioning teams with external sources like GitHub.

SELECT
id,
attributes,
type
FROM datadog.organization.team_syncs
WHERE filter[source] = '{{ filter[source] }}' -- required
;