Skip to main content
Version: 4.1 (2026 H2)

Static


The StaticSyncSource can be used to add constant properties or claims to the sync process — values that are the same for all users and do not come from an external source.

Typical use cases:

  • Providing fallback values in a sync pipeline that can be overwritten by later steps.
  • Setting a fixed value for all users (e.g. a shared department or company name).
  • Testing a mapping configuration with predictable values before connecting a real source.

Example:

<StaticSyncSource name="Static">
<Property name="test1">helloworld</Property>
<Property name="test2">helloworld2</Property>
<Claims>
<Claim type="http://schemas.xmlsoap.org/ws/2005/05/identity/claims/test">WERT!</Claim>
</Claims>
</StaticSyncSource>