Skip to main content
GET
/
scim
/
v2
/
users
/
{userId}
Get user
curl --request GET \
  --url https://{instance}.omniapp.co/api/scim/v2/users/{userId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "userName": "<string>",
  "displayName": "<string>",
  "meta": {
    "resourceType": "User",
    "created": "2023-11-07T05:31:56Z",
    "lastModified": "2023-11-07T05:31:56Z"
  },
  "schemas": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Requires an Organization API Key. Personal Access Tokens (PATs) are not supported for this endpoint.

Include in the Authorization header as: Bearer ORGANIZATION_API_KEY

Path Parameters

userId
string
required

User ID

Response

User details

id
string
userName
string
displayName
string
meta
object
schemas
string[]