!!! Overview
For manipulation of [SCIM Resource]s, [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|SCIM User] to doing massive bulk updates:
* [Create|SCIM Create Request] = [POST|HTTP POST] https://example.com/{v}/{resource}
* [Read|SCIM Read Request] = [GET|HTTP GET] https://example.com/{v}/{resource}/{id}
* [Update|SCIM Update Request] = [PATCH|HTTP PATCH] https://example.com/{v}/{resource}/{id}
* [Delete|SCIM Delete Request] = [DELETE|HTTP DELETE] https://example.com/{v}/{resource}/{id}
* [Replace|SCIM Replace Request] = [PUT|HTTP PUT] https://example.com/{v}/{resource}/{id}
* [Search|SCIM Search Request] = [GET|HTTP GET] https://example.com/{v}/{resource}?filter={attribute}{op}{value}&sortBy={attributeName}&sortOrder={ascending|descending}
* [Bulk|SCIM Bulk Request] = [POST|HTTP POST] https://example.com/{v}/Bulk

%%information
You might want to view our [Best Practices] for [API versioning]
%%

!! More Information
There might be more information for this subject on one of the following:
[{ReferringPagesPlugin before='*' after='\n' }]