We intend to get documents published with many details and pertinent suggestions about implementation.
Here is some info that should help you get started and understand more about what is going on.
An example PureCloud SCIM record for a user. This should help clarify some of the values. This is from a GET /scim/v2/Users/d2ac184e-4733-41e9-8a45-3459e1efd8c7
{
"id": "d2ac184e-4733-41e9-8a45-3459e1efd8c7",
"displayName": "--campaignUser0, Bob",
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User",
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User"
],
"active": true,
"userName": "--campaignUser0@example.com",
"title": "MyTitle2",
"phoneNumbers": [
{
"value": "+13177023406",
"type": "work",
"primary": true
},
{
"value": "+33222222222",
"type": "work2",
"primary": false
}
],
"emails": [
{
"value": "--campaignUser0@example.com",
"type": "other",
"primary": true
}
],
"meta": {
"resourceType": "User",
"lastModified": "2019-04-09T19:36:50.000Z",
"location": "/api/v2/scim/v2/users/d2ac184e-4733-41e9-8a45-3459e1efd8c7",
"version": "56"
},
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User": {
"division": "KristenDivision2",
"department": "Department"
}
}
Response Headers:
ETag →"56"
ININ-Correlation-Id →b4791acb-014e-4daa-92db-99dd9e9e4d9d
inin-ratelimit-count →7
inin-ratelimit-allowed →200
inin-ratelimit-reset →4
Strict-Transport-Security →max-age=600; includeSubDomains
Cache-Control →no-cache, no-store, must-revalidate
Pragma →no-cache
Expires →0
Content-Type →application/scim+json
Date →Fri, 12 Apr 2019 14:16:49 GMT
Content-Length →761
There are some important things to note about the response headers.
- Etag is the version. It may be used with if-match, and if-none-match headers on PUT and GETs.
- Content type is application/scim+json
- ININ Correlation ID is a good thing to keep in any audit trails because PureCloud support and DEV and track that back to errors in our system logs and audits.
- There are rate limits for the API. The inin-limit-* headers will indicate the rate limit, the current count, and how many seconds to reset. API will return a 429 if over limit, and theses values will indicate how long to wait until API calls are allowed.
The Rate Limits are one reason that an integration MUST be well behaved and not do brute force updates of all users or frequent scans of all users.
Also related to performance GET of users is restricted in how many users will be returned.
Creating a user (POST) VIA SCIM requires the following SCIM fields:
- userName,, the unique identifier for user in PureCloud, and must be a unique email address. From AD we usually use user-PrincipleName
- displayName
Any other user attribute may also be set with the POST.
Enterprise user manager is supported, but must be the PureCloud/SCIM User.id.
The externalId currently is not supported, but will be added. It is the ID used in the external system, and will allow /scim/v2/User?filter=externalId eq {externalId} searches to look for users that were created with externalIds. The value is not directly used by PureCloud.
The emails type "other" is a read only value because it is automatically created from the userName.
Additional email types are 'work'.
Phone number types are "work", "work2", "work3", "work4", "home", "mobile".