Skip to content

Get a specific user

Request

Retrieves detailed information about a specific user by their UUID

Path
idstringrequired

User UUID

GET
/rest/v2/users/{id}
curl -i -X GET \
  'https://api.rhythms.ai/rest/v2/users/{id}'

Responses

Success

Headers
any
Body*/*
dataobjectrequired
Response
{
  "data": {
    "type": "string",
    "record": {
      "uuid": "string",
      "display_name": "string",
      "account_id": null,
      "status": "active",
      "manager_uuid": null,
      "path": null,
      "creator_uuid": null,
      "license_type": "string",
      "display_name_source": "manual",
      "avatar_url": null,
      "external_employee_id": null
    },
    "checks": null,
    "access_source": null
  }
}