ZITADEL Docs
APIsCore ResourcesV1Organization Objects

GetHumanProfile

Get User Profile (Human)

Deprecated: use user service v2 GetUserByID instead.

Get basic information like first_name and last_name of a user.

GET
/users/{user_id}/profile

Path Parameters

user_id*string

Response Body

application/json

application/json

curl -X GET "https://loading/users/string/profile"
{
  "details": {
    "sequence": 0,
    "creationDate": "1s",
    "changeDate": "1s",
    "resourceOwner": "string"
  },
  "profile": {
    "firstName": "string",
    "lastName": "string",
    "nickName": "string",
    "displayName": "string",
    "preferredLanguage": "string",
    "gender": "GENDER_UNSPECIFIED",
    "avatarUrl": "string"
  }
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?