Skip to main content
Forwards the reply email to the SDR, creates an MQL handoff record with thread snapshot, and creates a prospect thread in the SDR’s inbox.
curl -X POST https://app.leadterra.co/v1/replies/REPLY_ID/assign \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "sdrId": "sdr_id",
    "category": "A",
    "skipIcpCheck": true
  }'

Request Body

sdrId
string
required
The SDR to assign the reply to. Must be active in the workspace.
to
string
Override the forwarding email address. Defaults to the SDR’s email.
cc
string[]
Additional CC email addresses.
subject
string
Override the forwarded email subject.
note
string
Note to include at the top of the forwarded email.
category
string
MQL category. Must be A, B, or C.
forceForward
boolean
Re-forward even if the reply was already forwarded.
skipIcpCheck
boolean
Skip the seniority and employee-count ICP gate. Set to true for pre-vetted leads.
seniority
string
Contact seniority for ICP check. Required if skipIcpCheck is false.
employeeCount
string
Company employee count for ICP check. Required if skipIcpCheck is false.

Response

{
  "data": {
    "handoffId": "handoff_id",
    "threadId": "thread_id",
    "messageId": "gmail_message_id",
    "gmailThreadId": "gmail_thread_id"
  }
}
Returns 409 if the reply was already forwarded. Returns 400 with icpFailed: true if the contact doesn’t meet ICP criteria.