Skip to main content

synchronization_templates_schema_functions

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

Overview

Namesynchronization_templates_schema_functions
TypeResource
Identra_id.applications.synchronization_templates_schema_functions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
parametersarrayCollection of function parameters.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectapplication_id, synchronization_template_idList all the functions currently supported in the attributeMappingSource.

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
application_idstringThe unique identifier of application
synchronization_template_idstringThe unique identifier of synchronizationTemplate

SELECT examples

List all the functions currently supported in the attributeMappingSource.

SELECT
id,
parameters
FROM entra_id.applications.synchronization_templates_schema_functions
WHERE application_id = '{{ application_id }}' -- required
AND synchronization_template_id = '{{ synchronization_template_id }}' -- required
;