CommunityUser

A user within an Experience Cloud site

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
id string
communityNickname string
companyName string
displayName string
email string
firstName string
lastName string
name string
photo object
reputation object
title string
type string
url string
username string
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-communityuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommunityUser",
  "title": "CommunityUser",
  "type": "object",
  "description": "A user within an Experience Cloud site",
  "properties": {
    "id": {
      "type": "string"
    },
    "communityNickname": {
      "type": "string"
    },
    "companyName": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "photo": {
      "type": "object",
      "properties": {
        "fullEmailPhotoUrl": {
          "type": "string",
          "format": "uri"
        },
        "largePhotoUrl": {
          "type": "string",
          "format": "uri"
        },
        "smallPhotoUrl": {
          "type": "string",
          "format": "uri"
        },
        "standardEmailPhotoUrl": {
          "type": "string",
          "format": "uri"
        }
      }
    },
    "reputation": {
      "$ref": "#/components/schemas/Reputation"
    },
    "title": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "username": {
      "type": "string"
    }
  }
}