v21

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-042830148.8 KB
Email Import

Check Email Connection Status

Verify if an inbox_token is still valid and check connection status.

Use this to check if the user needs to re-authenticate (e.g., if they revoked access in their email provider settings).

post/v4/inbox/status

Headers

x-inbox-tokenstring required

The encrypted inbox token

Response

Token status retrieved

connectedboolean

Whether the token is valid and usable

emailstring email

Email address of the connected account

providerstring
statusstring

Example response

{
  "connected": true,
  "email": "user@gmail.com",
  "provider": "gmail",
  "status": "success"
}