Overview#
For manipulation of SCIM Resources, SCIM provides a REST API using JSON with a rich but simple set of operations, which support everything from patching a specific attribute on a specific user to doing massive bulk updates:- Create = POST https://example.com/{v}/{resource}
- Read = GET https://example.com/{v}/{resource}/{id}
- Update = PATCH https://example.com/{v}/{resource}/{id}
- Delete = DELETE https://example.com/{v}/{resource}/{id}
- Replace = PUT https://example.com/{v}/{resource}/{id}
- Search = GET https://example.com/{v}/{resource}?filter={attribute}{op}{value}&sortBy={attributeName}&sortOrder={ascending|descending}
- Bulk = POST https://example.com/{v}/Bulk
You might want to view our Best Practices for API versioning