UserDetail

CloudCRMCustomer ManagementEnterpriseSales

Properties

Name Type Description
aboutMe string
companyName string
displayName string
email string
firstName string
followersCount integer
followingCounts object
groupCount integer
id string
isActive boolean
lastName string
name string
photo object
title string
type string
url string
username string
View JSON Schema on GitHub

JSON Schema

salesforce-sales-cloud-userdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserDetail",
  "title": "UserDetail",
  "type": "object",
  "properties": {
    "aboutMe": {
      "type": "string",
      "nullable": true
    },
    "companyName": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "followersCount": {
      "type": "integer"
    },
    "followingCounts": {
      "type": "object",
      "properties": {
        "people": {
          "type": "integer"
        },
        "records": {
          "type": "integer"
        },
        "total": {
          "type": "integer"
        }
      }
    },
    "groupCount": {
      "type": "integer"
    },
    "id": {
      "type": "string"
    },
    "isActive": {
      "type": "boolean"
    },
    "lastName": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "photo": {
      "type": "object",
      "properties": {
        "smallPhotoUrl": {
          "type": "string"
        },
        "mediumPhotoUrl": {
          "type": "string"
        },
        "largePhotoUrl": {
          "type": "string"
        }
      }
    },
    "title": {
      "type": "string",
      "nullable": true
    },
    "type": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "username": {
      "type": "string"
    }
  }
}