Operations
SCIM provides a REST API with a rich but simple set of operations that you can use to manage resources.
The SCIM operations 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}
- Replace
- PUT https://example.com/{v}/{resource}/{id}
- Delete
- DELETE https://example.com/{v}/{resource}/{id}
- Update
- PATCH 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
Parent topic:
SCIM object model