Salesloft · Schema

Salesloft Person

A Person in Salesloft represents a contact or prospect being engaged through the sales process.

SalesSales EngagementCadencesCRMEmail

Properties

Name Type Description
id integer Unique identifier for the person
first_name string First name of the person
last_name string Last name of the person
email_address string Primary email address
secondary_email_address string Secondary email address
personal_email_address string Personal email address
phone string Primary phone number
phone_extension string Phone extension
mobile_phone string Mobile phone number
home_phone string Home phone number
linkedin_url string LinkedIn profile URL
title string Job title of the person
city string City
state string State or province
country string Country
work_city string Work city
work_state string Work state
work_country string Work country
person_company_name string Company name associated with this person
person_company_website string Company website for this person
person_company_industry string Company industry for this person
job_seniority string Seniority level of the person's role
do_not_contact boolean Whether this person is flagged as do not contact
eu_resident boolean Whether this person is an EU resident (GDPR)
locale string Locale (e.g. en_US)
personal_website string Personal website URL
twitter_handle string Twitter handle
tags array Array of tags
contact_restrictions array Contact restriction types (e.g. call, email)
custom_fields object Custom field key-value pairs
account_id integer ID of the associated Account
owner_id integer ID of the user who owns this person
import_id integer ID of the import this person came from
person_stage_id integer ID of the person's current stage
crm_id string External CRM identifier
crm_id_type string Type of external CRM
created_at string Timestamp when the person was created
updated_at string Timestamp when the person was last updated
View JSON Schema on GitHub

JSON Schema

salesloft-person-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/salesloft/json-schema/salesloft-person-schema.json",
  "title": "Salesloft Person",
  "description": "A Person in Salesloft represents a contact or prospect being engaged through the sales process.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier for the person"
    },
    "first_name": {
      "type": "string",
      "description": "First name of the person"
    },
    "last_name": {
      "type": "string",
      "description": "Last name of the person"
    },
    "email_address": {
      "type": "string",
      "format": "email",
      "description": "Primary email address"
    },
    "secondary_email_address": {
      "type": "string",
      "format": "email",
      "description": "Secondary email address"
    },
    "personal_email_address": {
      "type": "string",
      "format": "email",
      "description": "Personal email address"
    },
    "phone": {
      "type": "string",
      "description": "Primary phone number"
    },
    "phone_extension": {
      "type": "string",
      "description": "Phone extension"
    },
    "mobile_phone": {
      "type": "string",
      "description": "Mobile phone number"
    },
    "home_phone": {
      "type": "string",
      "description": "Home phone number"
    },
    "linkedin_url": {
      "type": "string",
      "format": "uri",
      "description": "LinkedIn profile URL"
    },
    "title": {
      "type": "string",
      "description": "Job title of the person"
    },
    "city": {
      "type": "string",
      "description": "City"
    },
    "state": {
      "type": "string",
      "description": "State or province"
    },
    "country": {
      "type": "string",
      "description": "Country"
    },
    "work_city": {
      "type": "string",
      "description": "Work city"
    },
    "work_state": {
      "type": "string",
      "description": "Work state"
    },
    "work_country": {
      "type": "string",
      "description": "Work country"
    },
    "person_company_name": {
      "type": "string",
      "description": "Company name associated with this person"
    },
    "person_company_website": {
      "type": "string",
      "format": "uri",
      "description": "Company website for this person"
    },
    "person_company_industry": {
      "type": "string",
      "description": "Company industry for this person"
    },
    "job_seniority": {
      "type": "string",
      "description": "Seniority level of the person's role",
      "enum": ["individual_contributor", "manager", "director", "vp", "c_suite", "owner", "unknown"]
    },
    "do_not_contact": {
      "type": "boolean",
      "description": "Whether this person is flagged as do not contact"
    },
    "eu_resident": {
      "type": "boolean",
      "description": "Whether this person is an EU resident (GDPR)"
    },
    "locale": {
      "type": "string",
      "description": "Locale (e.g. en_US)"
    },
    "personal_website": {
      "type": "string",
      "format": "uri",
      "description": "Personal website URL"
    },
    "twitter_handle": {
      "type": "string",
      "description": "Twitter handle"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of tags"
    },
    "contact_restrictions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Contact restriction types (e.g. call, email)"
    },
    "custom_fields": {
      "type": "object",
      "description": "Custom field key-value pairs",
      "additionalProperties": true
    },
    "account_id": {
      "type": "integer",
      "description": "ID of the associated Account"
    },
    "owner_id": {
      "type": "integer",
      "description": "ID of the user who owns this person"
    },
    "import_id": {
      "type": "integer",
      "description": "ID of the import this person came from"
    },
    "person_stage_id": {
      "type": "integer",
      "description": "ID of the person's current stage"
    },
    "crm_id": {
      "type": "string",
      "description": "External CRM identifier"
    },
    "crm_id_type": {
      "type": "string",
      "description": "Type of external CRM"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the person was created"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the person was last updated"
    }
  },
  "required": ["id", "email_address"],
  "additionalProperties": false
}