Skip to main content

teams_licensing_details

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

Overview

Nameteams_licensing_details
TypeResource
Identra_id.users.teams_licensing_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
hasTeamsLicensebooleanIndicates whether the user has a valid license to use Microsoft Teams.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectuser_idGet the license status of a user in Microsoft Teams.

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
user_idstringThe unique identifier of user

SELECT examples

Get the license status of a user in Microsoft Teams.

SELECT
id,
hasTeamsLicense
FROM entra_id.users.teams_licensing_details
WHERE user_id = '{{ user_id }}' -- required
;