UserProfile

SharePoint user profile.

CollaborationDocument ManagementEnterprise Content ManagementIntranetMicrosoft

Properties

Name Type Description
AccountName string
DisplayName string
Email string
Title string
Department string
PictureUrl string
PersonalUrl string
View JSON Schema on GitHub

JSON Schema

sharepoint-user-profile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/sharepoint/refs/heads/main/json-schema/sharepoint-user-profile-schema.json",
  "title": "UserProfile",
  "description": "SharePoint user profile.",
  "type": "object",
  "properties": {
    "AccountName": {
      "type": "string",
      "example": "i:0#.f|membership|[email protected]"
    },
    "DisplayName": {
      "type": "string",
      "example": "Jane Smith"
    },
    "Email": {
      "type": "string",
      "example": "[email protected]"
    },
    "Title": {
      "type": "string",
      "example": "Senior Developer"
    },
    "Department": {
      "type": "string",
      "example": "Engineering"
    },
    "PictureUrl": {
      "type": "string",
      "example": "https://contoso.sharepoint.com/_layouts/15/userphoto.aspx?size=L&[email protected]"
    },
    "PersonalUrl": {
      "type": "string",
      "example": "https://contoso-my.sharepoint.com/personal/user_contoso_com/"
    }
  }
}