ScalepointDeveloper Portal

Direct SCIM API

Any SCIM 2.0 client can use the same endpoints. Request a token, then call the resource paths.

GET /scim/v2/{tenant}/Users?filter=userName%20eq%20%22ada@example.com%22 HTTP/1.1
Host: sandbox-accounts.scalepoint.com
Authorization: Bearer YOUR_ACCESS_TOKEN
POST /scim/v2/{tenant}/Users HTTP/1.1
Host: sandbox-accounts.scalepoint.com
Authorization: Bearer YOUR_ACCESS_TOKEN
Content-Type: application/scim+json

{
  "schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
  "userName": "ada@example.com",
  "displayName": "Ada Lovelace",
  "externalId": "5f9a1f6e-3c1a-4a5f-9c2e-4f0f8a2b7d31",
  "active": true,
  "emails": [{ "value": "ada@example.com", "type": "work", "primary": true }]
}

Contact Scalepoint before you build against these endpoints. Each client is authorized individually for your organization, so a client that has not been registered receives 403 Forbidden even with a valid token.

Last updated on