> ## Documentation Index
> Fetch the complete documentation index at: https://docs.amplemarket.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Sequence Stage

> Notifications for manual or automatic sequence stage or reply sequence

<ResponseField name="from" type="string">
  Sender's email address.
</ResponseField>

<ResponseField name="to" type="array[string]">
  List of recipients in the "To" field.
</ResponseField>

<ResponseField name="cc" type="array[string]">
  List of recipients in the "CC" field.
</ResponseField>

<ResponseField name="bcc" type="array[string]">
  List of recipients in the "BCC" field.
</ResponseField>

<ResponseField name="date" type="datetime">
  When the email was sent.
</ResponseField>

<ResponseField name="subject" type="string">
  Email subject line.
</ResponseField>

<ResponseField name="body" type="string">
  Email content.
</ResponseField>

<ResponseField name="id" type="string">
  Activity ID.
</ResponseField>

<ResponseField name="linkedin" type="object | null">
  LinkedIn activity details.

  <Expandable title="properties">
    <ResponseField name="subject" type="string" />

    <ResponseField name="description" type="string" />

    <ResponseField name="date" type="datetime" />
  </Expandable>
</ResponseField>

<ResponseField name="call" type="object | null">
  Call details.

  <Expandable title="properties">
    <ResponseField name="date" type="datetime" />

    <ResponseField name="title" type="string" />

    <ResponseField name="description" type="string" />

    <ResponseField name="direction" type="enum[string]">
      Available values are: `incoming`, `outgoing`
    </ResponseField>

    <ResponseField name="disposition" type="enum[string]">
      Available values are: `no_answer`, `no_answer_voicemail`, `wrong_number`,
      `busy`, `not_interested`, `interested`
    </ResponseField>

    <ResponseField name="duration" type="datetime" />

    <ResponseField name="from" type="string" />

    <ResponseField name="to" type="string" />

    <ResponseField name="recording_url" type="string" />
  </Expandable>
</ResponseField>

<ResponseField name="task" type="object | null">
  Generic Task details.

  <Expandable title="properties">
    <ResponseField name="subject" type="string" />

    <ResponseField name="user_notes" type="string" />

    <ResponseField name="date" type="datetime" />
  </Expandable>
</ResponseField>

<ResponseField name="linkedin_url" type="string">
  Lead's LinkedIn URL.
</ResponseField>

<ResponseField name="is_reply" type="boolean" default="false" required>
  Whether the activity is a reply.
</ResponseField>

<ResponseField name="user" type="object" required>
  User details.

  <Expandable title="properties">
    <ResponseField name="first_name" type="string" />

    <ResponseField name="last_name" type="string" />

    <ResponseField name="email" type="string" />
  </Expandable>
</ResponseField>

<ResponseField name="dynamic_fields" type="object">
  Lead's dynamic fields.
</ResponseField>

<ResponseField name="sequence" type="object | null">
  Sequence details.

  <Expandable title="properties">
    <ResponseField name="id" type="string" />

    <ResponseField name="name" type="string" />

    <ResponseField name="start_date" type="datetime" />

    <ResponseField name="end_date" type="datetime">
      Deprecated, the value does not represent the end date of the sequence or
      lead. Its value is always null, and the field will be removed in the
      future.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="sequence_lead" type="object | null">
  Sequence lead details.

  <Expandable title="properties">
    <ResponseField name="completion_date" type="datetime">
      The value is `null` if the lead did not complete the sequence.
    </ResponseField>

    <ResponseField name="automatic" type="boolean" />
  </Expandable>
</ResponseField>

<ResponseField name="sequence_stage" type="object | null">
  Sequence stage details.

  <Expandable title="properties">
    <ResponseField name="index" type="integer" />

    <ResponseField name="type" type="enum[string]">
      Available values are: `email`, `linkedin_visit`, `linkedin_follow`,
      `linkedin_like_last_post`, `linkedin_connect`, `linkedin_message`,
      `linkedin_voice_message`, `linkedin_video_message`, `phone_call`,
      `custom_task`
    </ResponseField>

    <ResponseField name="automatic" type="boolean" />
  </Expandable>
</ResponseField>

<ResponseField name="reply_sequence" type="object | null">
  Reply sequence details.

  <Expandable title="properties">
    <ResponseField name="name" type="string" />

    <ResponseField name="start_date" type="datetime" />

    <ResponseField name="end_date" type="datetime" />
  </Expandable>
</ResponseField>

<ResponseField name="reply_sequence_stage" type="object | null">
  Reply sequence stage details.

  <Expandable title="properties">
    <ResponseField name="index" type="integer" />
  </Expandable>
</ResponseField>

<ResponseField name="contact" type="object">
  Contact details.

  <Expandable title="properties">
    <ResponseField name="id" type="string" />
  </Expandable>
</ResponseField>

<RequestExample>
  ```js Email theme={null}
  {
      "from": "noreply@amplemarket.com",
      "to": [
          "destination@example.com"
      ],
      "cc": [
          "noreply@amplemarket.com"
      ],
      "bcc": [
          "noreply@amplemarket.com"
      ],
      "date": "2024-10-11T10:57:00Z",
      "subject": "The subject of the message",
      "body": "The email message body in plaintext.",
      "id": "d4927e92486a0ac8399ddb2d7c6105fe",
      "linkedin_url": "https://linkedin.com/in/test",
      "is_reply": false,
      "user": {
        "first_name": "Jane",
        "last_name": "Doe",
        "email": "jane.doe@email.com"
      },
      "dynamic_fields": {
        "first_name": "John",
        "last_name": "Doe",
        "company_name": "Amplemarket",
        "company_domain": "amplemarket.com",
        "company_email_domain": "amplemarket.com",
        "title": "Founder & CEO",
        "simplified_title": "CEO",
        "email": "destination@example.com",
        "city": "San Francisco",
        "state": "California",
        "country": "United States",
        "industry": "Computer Software",
        "linkedin_url": "https://www.linkedin.com/in/williamhgates",
        "sender": {
          "first_name": "Jane",
          "last_name": "Doe"
        }
      },
      "sequence": {
        "id": "a3f8b29c7d15e4f6b8c9a2e5d7f1b3c8e6f9a4b2",
        "name": "The name of the sequence",
        "start_date": "2024-10-11T10:57:00Z",
        "end_date": null
      },
      "sequence_stage": {
        "index": 2,
        "type": "email",
        "automatic": true
      },
      "sequence_lead": {
        "completion_date": "2025-06-08T12:30:00Z"
      },
      "contact": {
        "id": "01234567-89ab-cdef-0123-456789abcdef"
      }
  }
  ```

  ```js LinkedIn theme={null}
  {
      "id": "d4927e92486a0ac8399ddb2d7c6105fe",
      "linkedin": {
        "subject": "LinkedIn: Send message to Profile",
        "description": "Message:  \"This is the message body\"",
        "date": "2024-10-11T10:57:00Z"
      },
      "linkedin_url": "https://linkedin.com/in/test",
      "is_reply": false,
      "user": {
        "first_name": "Jane",
        "last_name": "Doe",
        "email": "jane.doe@email.com"
      },
      "dynamic_fields": {
        "first_name": "John",
        "last_name": "Doe",
        "company_name": "Amplemarket",
        "company_domain": "amplemarket.com",
        "company_email_domain": "amplemarket.com",
        "title": "Founder & CEO",
        "simplified_title": "CEO",
        "email": "destination@example.com",
        "city": "San Francisco",
        "state": "California",
        "country": "United States",
        "industry": "Computer Software",
        "linkedin_url": "https://www.linkedin.com/in/williamhgates",
        "sender": {
          "first_name": "Jane",
          "last_name": "Doe"
        }
      },
      "sequence": {
        "id": "a3f8b29c7d15e4f6b8c9a2e5d7f1b3c8e6f9a4b2",
        "name": "The name of the sequence",
        "start_date": "2024-10-11T10:57:00Z",
        "end_date": null
      },
      "sequence_stage": {
        "index": 2,
        "type": "linkedin_message",
        "automatic": true
      },
      "contact": {
        "id": "01234567-89ab-cdef-0123-456789abcdef"
      }
  }
  ```

  ```js Call theme={null}
  {
      "id": "d4927e92486a0ac8399ddb2d7c6105fe",
      "call": {
        "date": "2024-10-11T10:57:00Z",
        "title": "Incoming call to  (+351999999999) | Answered | Answered",
        "description": "Call disposition: Answered<br />Call recording URL: https://amplemarket.com/example<br />",
        "direction": "incoming",
        "disposition": "interested",
        "duration": "1970-01-01T00:02:00.000Z",
        "from": "+351999999999",
        "to": "+351888888888",
        "recording_url": "https://amplemarket.com/example"
      },
      "linkedin_url": "https://linkedin.com/in/test",
      "is_reply": false,
      "user": {
        "first_name": "Jane",
        "last_name": "Doe",
        "email": "jane.doe@email.com"
      },
      "dynamic_fields": {
        "first_name": "John",
        "last_name": "Doe",
        "company_name": "Amplemarket",
        "company_domain": "amplemarket.com",
        "company_email_domain": "amplemarket.com",
        "title": "Founder & CEO",
        "simplified_title": "CEO",
        "email": "destination@example.com",
        "city": "San Francisco",
        "state": "California",
        "country": "United States",
        "industry": "Computer Software",
        "linkedin_url": "https://www.linkedin.com/in/williamhgates",
        "sender": {
          "first_name": "Jane",
          "last_name": "Doe"
        }
      },
      "sequence": {
        "id": "a3f8b29c7d15e4f6b8c9a2e5d7f1b3c8e6f9a4b2",
        "name": "The name of the sequence",
        "start_date": "2024-10-11T10:57:00Z",
        "end_date": null
      },
      "sequence_stage": {
        "index": 2,
        "type": "phone_call",
        "automatic": true
      },
      "contact": {
        "id": "01234567-89ab-cdef-0123-456789abcdef"
      }
  }
  ```

  ```js Generic task theme={null}
  {
      "id": "d4927e92486a0ac8399ddb2d7c6105fe",
      "task": {
        "subject": "Generic Task",
        "user_notes": "This is a note",
        "date": "2024-10-11T10:57:00+00:00"
      },
      "linkedin_url": "https://linkedin.com/in/test",
      "is_reply": false,
      "user": {
        "first_name": "Jane",
        "last_name": "Doe",
        "email": "jane.doe@email.com"
      },
      "dynamic_fields": {
        "first_name": "John",
        "last_name": "Doe",
        "company_name": "Amplemarket",
        "company_domain": "amplemarket.com",
        "company_email_domain": "amplemarket.com",
        "title": "Founder & CEO",
        "simplified_title": "CEO",
        "email": "destination@example.com",
        "city": "San Francisco",
        "state": "California",
        "country": "United States",
        "industry": "Computer Software",
        "linkedin_url": "https://www.linkedin.com/in/williamhgates",
        "sender": {
          "first_name": "Jane",
          "last_name": "Doe"
        }
      },
      "sequence": {
        "id": "a3f8b29c7d15e4f6b8c9a2e5d7f1b3c8e6f9a4b2",
        "name": "The name of the sequence",
        "start_date": "2024-10-11T10:57:00Z",
        "end_date": null
      },
      "sequence_stage": {
        "index": 2,
        "type": "custom_task",
        "automatic": true
      },
      "contact": {
        "id": "01234567-89ab-cdef-0123-456789abcdef"
      }
  }
  ```

  ```js Reply Sequence (email only) theme={null}
  {
      "from": "noreply@amplemarket.com",
      "to": [
          "destination@example.com"
      ],
      "cc": [
          "noreply@amplemarket.com"
      ],
      "bcc": [
          "noreply@amplemarket.com"
      ],
      "date": "2024-10-11T10:57:00Z",
      "subject": "The subject of the message",
      "body": "The email message body in plaintext.",
      "id": "d4927e92486a0ac8399ddb2d7c6105fe",
      "linkedin_url": "https://linkedin.com/in/test",
      "is_reply": false,
      "user": {
        "first_name": "Jane",
        "last_name": "Doe",
        "email": "jane.doe@email.com"
      },
      "dynamic_fields": {
        "first_name": "John",
        "last_name": "Doe",
        "company_name": "Amplemarket",
        "company_domain": "amplemarket.com",
        "company_email_domain": "amplemarket.com",
        "title": "Founder & CEO",
        "simplified_title": "CEO",
        "email": "destination@example.com",
        "city": "San Francisco",
        "state": "California",
        "country": "United States",
        "industry": "Computer Software",
        "linkedin_url": "https://www.linkedin.com/in/williamhgates",
        "sender": {
          "first_name": "Jane",
          "last_name": "Doe"
        }
      },
      "reply_sequence": {
        "name": "The name of the reply sequence",
        "start_date": "2024-10-11T10:57:00Z",
        "end_date": "2024-10-12T10:57:00Z"
      },
      "reply_sequence_stage": {
        "index": 1
      },
      "contact": {
        "id": "01234567-89ab-cdef-0123-456789abcdef"
      }
  }
  ```
</RequestExample>
