curl --request GET \
--url https://paradigm.lighton.ai/scim/v2/Users/{id} \
--header 'Authorization: Bearer <token>'{
"schemas": [
"<string>"
],
"userName": "alice",
"id": "2819c223-7f76-453a-919d-413861904646",
"externalId": "<string>",
"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": [
{
"type": "<unknown>",
"example": "<unknown>",
"value": "<string>",
"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\""
}
}Get SCIM user by id with RFC 7644 semantics. Requires a valid SCIM Bearer token.
curl --request GET \
--url https://paradigm.lighton.ai/scim/v2/Users/{id} \
--header 'Authorization: Bearer <token>'{
"schemas": [
"<string>"
],
"userName": "alice",
"id": "2819c223-7f76-453a-919d-413861904646",
"externalId": "<string>",
"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": [
{
"type": "<unknown>",
"example": "<unknown>",
"value": "<string>",
"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\""
}
}Bearer token authentication
SCIM resource identifier (server-generated UUID or opaque id).
"alice"
"2819c223-7f76-453a-919d-413861904646"
Identifier from the provisioning system (idempotency key)