Skip to main content

delegated_admin_customers

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

Overview

Namedelegated_admin_customers
TypeResource
Identra_id.tenant_relationships.delegated_admin_customers

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
displayNamestringThe Microsoft Entra ID display name of the customer tenant. Read-only. Supports $orderby.
serviceManagementDetailsarrayContains the management details of a service in the customer tenant that's managed by delegated administration.
tenantIdstringThe Microsoft Entra ID-assigned tenant ID of the customer. Read-only.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdelegated_admin_customer_idRead the properties of a delegatedAdminCustomer object.
listselectGet a list of the delegatedAdminCustomer objects and their properties.
insertinsert
updateupdatedelegated_admin_customer_id
deletedeletedelegated_admin_customer_idIf-Match

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
delegated_admin_customer_idstringThe unique identifier of delegatedAdminCustomer
If-MatchstringETag

SELECT examples

Read the properties of a delegatedAdminCustomer object.

SELECT
id,
displayName,
serviceManagementDetails,
tenantId
FROM entra_id.tenant_relationships.delegated_admin_customers
WHERE delegated_admin_customer_id = '{{ delegated_admin_customer_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.tenant_relationships.delegated_admin_customers (
id,
displayName,
tenantId,
serviceManagementDetails
)
SELECT
'{{ id }}',
'{{ displayName }}',
'{{ tenantId }}',
'{{ serviceManagementDetails }}'
RETURNING
id,
displayName,
serviceManagementDetails,
tenantId
;

UPDATE examples

No description available.

UPDATE entra_id.tenant_relationships.delegated_admin_customers
SET
id = '{{ id }}',
displayName = '{{ displayName }}',
tenantId = '{{ tenantId }}',
serviceManagementDetails = '{{ serviceManagementDetails }}'
WHERE
delegated_admin_customer_id = '{{ delegated_admin_customer_id }}' --required
RETURNING
id,
displayName,
serviceManagementDetails,
tenantId;

DELETE examples

No description available.

DELETE FROM entra_id.tenant_relationships.delegated_admin_customers
WHERE delegated_admin_customer_id = '{{ delegated_admin_customer_id }}' --required
AND If-Match = '{{ If-Match }}'
;