Salesloft · Example Payload

Salesloft Create Person Example

SalesSales EngagementCadencesCRMEmail

Salesloft Create Person Example is an example object payload from Salesloft, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.salesloft.com/v2/people",
    "headers": {
      "Authorization": "Bearer {SALESLOFT_API_KEY}",
      "Content-Type": "application/json"
    },
    "body": {
      "email_address": "jane.smith@acme.com",
      "first_name": "Jane",
      "last_name": "Smith",
      "phone": "+1-555-234-5678",
      "title": "VP of Engineering",
      "city": "San Francisco",
      "state": "CA",
      "country": "US",
      "person_company_name": "Acme Corporation",
      "person_company_website": "https://www.acme.com",
      "person_company_industry": "Software",
      "job_seniority": "vp",
      "linkedin_url": "https://www.linkedin.com/in/janesmith",
      "do_not_contact": false,
      "eu_resident": false,
      "tags": ["enterprise", "engineering"],
      "account_id": 1234567,
      "owner_id": 789
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": {
        "id": 9876543,
        "first_name": "Jane",
        "last_name": "Smith",
        "email_address": "jane.smith@acme.com",
        "phone": "+1-555-234-5678",
        "title": "VP of Engineering",
        "city": "San Francisco",
        "state": "CA",
        "country": "US",
        "person_company_name": "Acme Corporation",
        "job_seniority": "vp",
        "linkedin_url": "https://www.linkedin.com/in/janesmith",
        "do_not_contact": false,
        "eu_resident": false,
        "tags": ["enterprise", "engineering"],
        "account_id": 1234567,
        "owner_id": 789,
        "created_at": "2026-05-02T10:00:00.000Z",
        "updated_at": "2026-05-02T10:00:00.000Z"
      }
    }
  }
}