Skip to main content

mam_flagged_users

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

Overview

Namemam_flagged_users
TypeResource
Idazure_extras.intune.mam_flagged_users

Fields

The following fields are returned by SELECT queries:

Flagged users as collection response

NameDatatypeDescription
idstringResource Id
namestringResource name
locationstringResource Location
propertiesobject
tagsobjectResource Tags
typestringResource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselecthostName$filter, $top, $selectReturns Intune flagged user collection

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
hostNamestringLocation hostName for the tenant
$filterstringThe filter to apply on the operation.
$selectstringselect specific fields in entity.
$topinteger (int32)

SELECT examples

Returns Intune flagged user collection

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_extras.intune.mam_flagged_users
WHERE hostName = '{{ hostName }}' -- required
AND $filter = '{{ $filter }}'
AND $top = '{{ $top }}'
AND $select = '{{ $select }}'
;