Inbox
List inbox threads
Lists inbox threads in the authenticated account. By default only threads with at least one inbound reply are returned. Newest/Oldest sort and date_from/date_to use last_inbound_at (latest lead reply). The q parameter searches subject, participants, lead identity/company, campaign name, thread tags, and message bodies.
/v1/threadsAuthorization
bearerAuth Use an account API key in the Authorization header: Authorization: Bearer f_....
In: header
Query Parameters
Number of rows to return. Defaults to 20; maximum 100.
0 <= value <= 10020Zero-based offset for pagination.
0 <= value0Case-insensitive prefix search across thread subject, participants, lead name/email/company, campaign name, thread tags, and message bodies (min 2 characters).
Filter inbox threads to a single campaign.
uuidFilter inbox threads to a single mailbox.
uuidWhen true, returns only threads with unread received messages.
falseFilter threads by conversation status.
Value in
- "open"
- "closed"
Filter threads by category. Use no_category for uncategorized threads.
Value in
- "Interested"
- "Neutral"
- "Not Interested"
- "Auto Reply"
- "no_category"
Comma-separated thread tag ids. Returns threads tagged with any listed tag.
Inclusive ISO-8601 timestamp filter on last_inbound_at (latest lead reply).
date-timeInclusive ISO-8601 timestamp filter on last_inbound_at (latest lead reply).
date-timeWhen true (default), returns only threads with at least one inbound reply.
truecurl -X GET "https://example.com/v1/threads"{ "data": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "account_id": "449e7a5c-69d3-4b8a-aaaf-5c9b713ebc65", "campaign_id": "78614b6c-fe7c-41e2-8e25-c9b3a3c91904", "mailbox_id": "4d23d1af-2eef-4598-a5e0-1f19ae0b0c14", "subject": "string", "last_message_at": "2019-08-24T14:15:22Z", "last_inbound_at": "2019-08-24T14:15:22Z" } ], "limit": 0, "offset": 0, "total_count": 0}{ "error": { "type": "authentication_error", "code": "invalid_api_key", "message": "A valid Furnace API key is required" }}{ "error": { "type": "rate_limit_error", "code": "rate_limit_exceeded", "message": "Rate limit exceeded for this account" }}{ "error": { "type": "api_error", "code": "internal_error", "message": "Internal server error" }}