Skip to main content

service_provisioning_errors

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

Overview

Nameservice_provisioning_errors
TypeResource
Identra_id.groups.service_provisioning_errors

Fields

The following fields are returned by SELECT queries:

Retrieved collection

NameDatatypeDescription
createdDateTimestring (date-time)The date and time at which the error occurred. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)
isResolvedbooleanIndicates whether the error has been attended to.
serviceInstancestringQualified service instance (for example, 'SharePoint/Dublin') that published the service error information.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectgroup_idErrors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a group object. Supports $filter (eq, not, for isResolved and serviceInstance).

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
group_idstringThe unique identifier of group

SELECT examples

Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a group object. Supports $filter (eq, not, for isResolved and serviceInstance).

SELECT
createdDateTime,
isResolved,
serviceInstance
FROM entra_id.groups.service_provisioning_errors
WHERE group_id = '{{ group_id }}' -- required
;