Gong · Schema

Gong User

Represents a user account in the Gong platform, including profile information, settings, and organizational details.

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
id string Unique Gong user identifier.
emailAddress string The user's email address.
firstName string The user's first name.
lastName string The user's last name.
title string The user's job title.
phoneNumber string The user's phone number.
extension string The user's phone extension.
personalMeetingUrls array List of the user's personal meeting URLs.
settings object User recording and import settings.
managerId string The Gong user ID of this user's manager.
meetingConsentPageUrl string URL of the meeting consent page.
spokenLanguages array Languages spoken by the user.
active boolean Whether the user account is active.
created string When the user account was created.
avatarUrl string URL of the user's avatar image.
trustedEmailAddress string The user's trusted email address for SSO.
View JSON Schema on GitHub

JSON Schema

gong-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/gong/blob/main/json-schema/gong-user-schema.json",
  "title": "Gong User",
  "description": "Represents a user account in the Gong platform, including profile information, settings, and organizational details.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique Gong user identifier."
    },
    "emailAddress": {
      "type": "string",
      "format": "email",
      "description": "The user's email address."
    },
    "firstName": {
      "type": "string",
      "description": "The user's first name."
    },
    "lastName": {
      "type": "string",
      "description": "The user's last name."
    },
    "title": {
      "type": "string",
      "description": "The user's job title."
    },
    "phoneNumber": {
      "type": "string",
      "description": "The user's phone number."
    },
    "extension": {
      "type": "string",
      "description": "The user's phone extension."
    },
    "personalMeetingUrls": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "description": "List of the user's personal meeting URLs."
    },
    "settings": {
      "type": "object",
      "description": "User recording and import settings.",
      "properties": {
        "webConferencesRecorded": {
          "type": "boolean",
          "description": "Whether web conferences are recorded."
        },
        "preventWebConferenceRecording": {
          "type": "boolean",
          "description": "Whether web conference recording is prevented."
        },
        "telephonyCallsImported": {
          "type": "boolean",
          "description": "Whether telephony calls are imported."
        },
        "emailsImported": {
          "type": "boolean",
          "description": "Whether emails are imported."
        },
        "preventEmailImport": {
          "type": "boolean",
          "description": "Whether email import is prevented."
        }
      }
    },
    "managerId": {
      "type": "string",
      "description": "The Gong user ID of this user's manager."
    },
    "meetingConsentPageUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL of the meeting consent page."
    },
    "spokenLanguages": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "language": {
            "type": "string"
          },
          "primary": {
            "type": "boolean"
          }
        }
      },
      "description": "Languages spoken by the user."
    },
    "active": {
      "type": "boolean",
      "description": "Whether the user account is active."
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "When the user account was created."
    },
    "avatarUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL of the user's avatar image."
    },
    "trustedEmailAddress": {
      "type": "string",
      "format": "email",
      "description": "The user's trusted email address for SSO."
    }
  },
  "required": ["id", "emailAddress"]
}