v13

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-022830130.4 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

statusstring
connectedboolean

Whether the token is valid and usable

providerstring
emailstring email

Email address of the connected account

Example response

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