Skip to main content
Returns follow-up tasks that are due (or upcoming) for the SDR linked to the API key.
curl "https://app.leadterra.co/v1/sdr/followups/due?limit=20&includeUpcoming=false" \
  -H "Authorization: Bearer sk_live_your_key"

Query Parameters

limit
number
Maximum follow-ups to return (default 50, max 200).
includeUpcoming
string
Set to true to include not-yet-due follow-ups. Default false.

Response

{
  "data": [
    {
      "id": "followup_id",
      "threadId": "thread_id",
      "sdrId": "sdr_id",
      "status": "pending",
      "dueAt": "2026-06-29T14:00:00.000Z"
    }
  ]
}