---
title: "Get a SCIM User"
method: GET
path: "/v1/scim/Users/{id}"
tags: ["scimUserManagement"]
---

# Get a SCIM User

`GET /v1/scim/Users/{id}`

Fetches the details of a SCIM user by their unique identifier

## Path parameters

- `id` string, required

## Response `200`

User details retrieved successfully

- SCIMUserModel
  - `schemas` string[], required — Defines the SCIM schemas for the user
  - `userName` string, required — Unique identifier for the user (email)
  - `name` NameInfo, required
    - `givenName` string, required — Given name of the user (firstName)
    - `familyName` string, required — Family name of the user (lastName)
  - `emails` object[], required — Sumo logic accepts only one email address
    - `value` string, email
    - `type` string
    - `primary` boolean
  - `roles` unknown[], required — roles should exactly match with role names within sumologic. `roles` can be either `Array of strings` or `Array of objects` as shown in the payload. `primary` always set to 'true' as sumologic doesn't have a concept of primary/secondary roles
    - unknown
  - `id` string, required — Unique SCIM identifier for the user
  - `active` boolean — True if the user is active
  - `meta` ResourceData — Resource meta data of a user
    - `resourceType` string — The name of the resource type of the resource
    - `created` string, date-time — Creation timestamp in date-time format
    - `lastModified` string, date-time — Last modification timestamp in date-time format

## Other responses

- `default` — Operation failed with an error

---

[API](https://skmtc.net/sumologic/apis/sumo-logic-api.md) · [All operations](https://skmtc.net/sumologic/apis/sumo-logic-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sumologic/sumo-logic-api/versions/18a824df1e78/schema)
