Skip to content

User Schema

Use the following URL to access the SCIM API for User Provisioning:

https://api.woxday.com/scim/v2

Below is an example of a User attribute Schema:

JSON
{
  "schemas": ["urn:ietf:params:scim:api:messages:2.0:ListResponse"],
  "totalResults": 15,
  "startIndex": 1,
  "itemsPerPage": 100,
  "Resources": [
    {
      "schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
      "id": 11,
      "userName": "Elizabeth.Mclaughlin@woxday.com",
      "displayName": "Elizabeth Mclaughlin",
      "nickName": null,
      "name": { "formatted": "Elizabeth Mclaughlin", "givenName": "Elizabeth", "familyName": "Mclaughlin" },
      "meta": {
        "resourceType": "User",
        "created": 1541584315,
        "lastModified": 1679637684
      },
      "emails": [{ "value": "Elizabeth.Mclaughlin@woxday.com", "type": "work", "primary": true }],
      "phoneNumbers": [{ "value": "123-456-7890", "type": "work" }],
      "active": true
    }
  ]
}