delegated_admin_customers
Creates, updates, deletes, gets or lists a delegated_admin_customers resource.
Overview
| Name | delegated_admin_customers |
| Type | Resource |
| Id | entra_id.tenant_relationships.delegated_admin_customers |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
displayName | string | The Microsoft Entra ID display name of the customer tenant. Read-only. Supports $orderby. |
serviceManagementDetails | array | Contains the management details of a service in the customer tenant that's managed by delegated administration. |
tenantId | string | The Microsoft Entra ID-assigned tenant ID of the customer. Read-only. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
displayName | string | The Microsoft Entra ID display name of the customer tenant. Read-only. Supports $orderby. |
serviceManagementDetails | array | Contains the management details of a service in the customer tenant that's managed by delegated administration. |
tenantId | string | The Microsoft Entra ID-assigned tenant ID of the customer. Read-only. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | delegated_admin_customer_id | Read the properties of a delegatedAdminCustomer object. | |
list | select | Get a list of the delegatedAdminCustomer objects and their properties. | ||
insert | insert | |||
update | update | delegated_admin_customer_id | ||
delete | delete | delegated_admin_customer_id | If-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.
| Name | Datatype | Description |
|---|---|---|
delegated_admin_customer_id | string | The unique identifier of delegatedAdminCustomer |
If-Match | string | ETag |
SELECT examples
- get
- list
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
;
Get a list of the delegatedAdminCustomer objects and their properties.
SELECT
id,
displayName,
serviceManagementDetails,
tenantId
FROM entra_id.tenant_relationships.delegated_admin_customers
;
INSERT examples
- insert
- Manifest
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
;
# Description fields are for documentation purposes
- name: delegated_admin_customers
props:
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: displayName
value: "{{ displayName }}"
description: |
The Microsoft Entra ID display name of the customer tenant. Read-only. Supports $orderby.
- name: tenantId
value: "{{ tenantId }}"
description: |
The Microsoft Entra ID-assigned tenant ID of the customer. Read-only.
- name: serviceManagementDetails
description: |
Contains the management details of a service in the customer tenant that's managed by delegated administration.
value:
- id: "{{ id }}"
serviceManagementUrl: "{{ serviceManagementUrl }}"
serviceName: "{{ serviceName }}"
UPDATE examples
- update
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
- delete
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 }}'
;