Skip to main content
GET
/
v2
/
email-threads
/
inbox
/
status
Inbox Status
curl --request GET \
  --url https://api.example.com/v2/email-threads/inbox/status \
  --header 'Authorization: Bearer <token>'
{
  "all": 0,
  "unread": 0,
  "drafts": 0,
  "sent": 0,
  "triage": 0,
  "dismissed": 0
}

Documentation Index

Fetch the complete documentation index at: https://docs.api.stuut.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

Inbox email thread category counts.

all
integer
default:0
required
unread
integer
default:0
required
drafts
integer
default:0
required
sent
integer
default:0
required
triage
integer
default:0
required
dismissed
integer
default:0
required