Skip to main content

cross_tenant_access_policy_templates

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

Overview

Namecross_tenant_access_policy_templates
TypeResource
Identra_id.policies.cross_tenant_access_policy_templates

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
multiTenantOrganizationIdentitySynchronizationDefines an optional cross-tenant access policy template with user synchronization settings for a multitenant organization.
multiTenantOrganizationPartnerConfigurationDefines an optional cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectRepresents the base policy in the directory for multitenant organization settings.
updateupdate
deletedeleteIf-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
If-MatchstringETag

SELECT examples

Represents the base policy in the directory for multitenant organization settings.

SELECT
id,
multiTenantOrganizationIdentitySynchronization,
multiTenantOrganizationPartnerConfiguration
FROM entra_id.policies.cross_tenant_access_policy_templates
;

UPDATE examples

No description available.

UPDATE entra_id.policies.cross_tenant_access_policy_templates
SET
id = '{{ id }}',
multiTenantOrganizationIdentitySynchronization = '{{ multiTenantOrganizationIdentitySynchronization }}',
multiTenantOrganizationPartnerConfiguration = '{{ multiTenantOrganizationPartnerConfiguration }}'
RETURNING
id,
multiTenantOrganizationIdentitySynchronization,
multiTenantOrganizationPartnerConfiguration;

DELETE examples

No description available.

DELETE FROM entra_id.policies.cross_tenant_access_policy_templates
WHERE If-Match = '{{ If-Match }}'
;