Skip to main content
GET
/
scim
/
v2
/
Users
/
{id}
SCIM User
curl --request GET \
  --url https://paradigm.lighton.ai/scim/v2/Users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "schemas": [
    "<string>"
  ],
  "id": "2819c223-7f76-453a-919d-413861904646",
  "externalId": "<string>",
  "userName": "alice",
  "name": {
    "givenName": "<string>",
    "familyName": "<string>",
    "middleName": "<string>",
    "formatted": "<string>",
    "honorificPrefix": "<string>",
    "honorificSuffix": "<string>"
  },
  "displayName": "<string>",
  "nickName": "<string>",
  "profileUrl": "<string>",
  "emails": [
    {
      "value": "jsmith@example.com",
      "type": "work",
      "primary": true
    }
  ],
  "phoneNumbers": [
    {
      "value": "<string>",
      "type": "work"
    }
  ],
  "active": true,
  "groups": [
    {
      "value": "<string>",
      "$ref": "/scim/v2/Groups/a4f3e2...",
      "display": "<string>"
    }
  ],
  "meta": {
    "resourceType": "User",
    "created": "2023-11-07T05:31:56Z",
    "lastModified": "2023-11-07T05:31:56Z",
    "location": "/scim/v2/Users/2819c223-...",
    "version": "W/\"a330bc54f0671c9\""
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

id
string
required

SCIM resource identifier (server-generated UUID or opaque id).

Response

schemas
string[]
required
userName
string
required
Example:

"alice"

id
string
Example:

"2819c223-7f76-453a-919d-413861904646"

externalId
string

Identifier from the provisioning system (idempotency key)

name
object
displayName
string
nickName
string
profileUrl
string<uri>
emails
object[]
phoneNumbers
object[]
active
boolean
default:true
groups
object[]
meta
object
I