How to develop connectors using SCIMREST framework
This section provides two development guides for building connectors with the Polygon SCIMREST framework.
The Develop connector using Polygon SCIMREST framework section covers connector development for generic REST APIs. It walks through initial setup, schema definition, search implementation, and—for read-write connectors—create, update, and delete operations using Groovy DSLs.
The Develop SCIM 2.0 connector using Polygon SCIMREST framework section covers connector development specifically for SCIM 2.0 compliant services. It follows the same progression but takes advantage of the built-in SCIM support of the framework, including the automatic schema discovery, and native handling of SCIM search filters and PATCH/PUT operations.
Both guides address read-only and read-write connector development. If you are unsure which guide to follow, use the SCIM 2.0 guide when the target service exposes a SCIM 2.0 compliant API; otherwise, use the SCIMREST connector guide.
| Page | Description |
|---|---|
Reference for building SCIMREST connectors for REST APIs using Groovy DSLs. Covers setup, schema, search, relationships, and read-write operations. |
|
Guide for building SCIM 2.0 connectors using the SCIMREST framework. Covers automatic schema discovery, CRUD operations, filter support, and relationships. |
|
How to implement custom search logic in a SCIMREST connector when standard REST endpoints cannot return a full object list, using indirect multi-step search. |