POST
https://stoplight.io/mocks/replyteam/reply/765516802
/
sequences
/
{id}
/
contacts
curl --request POST \
  --url https://stoplight.io/mocks/replyteam/reply/765516802/sequences/{id}/contacts \
  --header 'Content-Type: application/json' \
  --data '{
  "contactId": 123,
  "contact": {
    "id": 12345,
    "email": "john.doe@company.com",
    "firstName": "John",
    "lastName": "Doe",
    "fullName": "John Doe",
    "title": "Senior Product Manager",
    "company": "Tech Solutions Inc",
    "domain": "company.com",
    "city": "San Francisco",
    "state": "CA",
    "country": "United States",
    "timeZoneId": "America/Los_Angeles",
    "phone": "+1-415-555-0123",
    "phoneStatus": "verified",
    "linkedInProfile": "https://www.linkedin.com/in/johndoe",
    "linkedInSalesNavigator": "https://www.linkedin.com/sales/profile/123456",
    "linkedInRecruiter": "https://www.linkedin.com/recruiter/profile/789012",
    "companySize": "501-1000",
    "industry": "Software & Technology",
    "notes": "Met at SaaS Conference 2024",
    "addingDate": "2024-03-08T10:00:00Z",
    "customFields": [
      {
        "key": "leadSource",
        "value": "Conference"
      },
      {
        "key": "budget",
        "value": "100k-250k"
      }
    ]
  },
  "forcePush": false,
  "startStep": "<string>"
}'
{
  "id": 12345,
  "email": "john.doe@company.com",
  "firstName": "John",
  "lastName": "Doe",
  "fullName": "John Doe",
  "title": "Senior Product Manager",
  "company": "Tech Solutions Inc",
  "domain": "company.com",
  "city": "San Francisco",
  "state": "CA",
  "country": "United States",
  "timeZoneId": "America/Los_Angeles",
  "phone": "+1-415-555-0123",
  "phoneStatus": "verified",
  "linkedInProfile": "https://www.linkedin.com/in/johndoe",
  "linkedInSalesNavigator": "https://www.linkedin.com/sales/profile/123456",
  "linkedInRecruiter": "https://www.linkedin.com/recruiter/profile/789012",
  "companySize": "501-1000",
  "industry": "Software & Technology",
  "notes": "Met at SaaS Conference 2024",
  "addingDate": "2024-03-08T10:00:00Z",
  "customFields": [
    {
      "key": "leadSource",
      "value": "Conference"
    },
    {
      "key": "budget",
      "value": "100k-250k"
    }
  ]
}

Path Parameters

id
string
required

Sequence ID

Body

application/json

Either provide an existing contactId to add to the sequence, or provide a contact object. If a contact object is provided and the contact doesn't exist in the system, a new contact will be created before being added to the sequence.

The body is of type object.

Response

201
application/json

Contact added to sequence

The response is of type object.