List Threads

GET
https://reloop.sh/api/inbox/v1/threads/

Query Parameters

mailboxIdstring

Filter threads by mailbox ID

limitstringnumberdefault: 50
  • Maximum value: 100
offsetstringnumberdefault: 0
const response = await fetch("https://reloop.sh/api/inbox/v1/threads/?mailboxId=value&limit=value&offset=value", {
  method: "GET",
  headers: {
    "Authorization": "Bearer re_123456789",
  },
});

const data = await response.json();
[
  {
    "id": "con_123456789",
    "mailboxId": "example_mailboxId",
    "organizationId": "example_organizationId",
    "subject": "Welcome to Reloop",
    "lastMessagePreview": "example_lastMessagePreview",
    "lastMessageAt": "2026-03-23T10:00:00.000Z",
    "status": "example_status",
    "messageCount": 0,
    "participants": [
      "example_participants"
    ],
    "isRead": true,
    "isStarred": true,
    "createdAt": "2026-03-23T10:00:00.000Z",
    "updatedAt": "2026-03-23T10:00:00.000Z"
  }
]

Was this page helpful?

Edit this page