Skip to main content
GET
/
api
/
email
/
accounts
/
providers
/
available
List configured email providers
curl --request GET \
  --url https://your-instance.example.com/api/email/accounts/providers/available \
  --header 'Authorization: Bearer <token>'
{
  "gmail": true,
  "outlook": false
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/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

Provider availability map keyed by provider name. true means OAuth credentials are configured on this backend.

Boolean map indicating which email providers have OAuth credentials configured on this backend. Absent or false means the provider cannot be used for new connections (the relay was deployed without that provider's client id/secret).

gmail
boolean
required

Gmail OAuth is configured.

outlook
boolean
required

Outlook OAuth is configured.