đ Use this endpoint to list all active domains in your organization, along with their mailbox setup, tag, status, and provider.
GET /api/v1/domainsorganization_id (required)password (optional)mailbox_password is included in the response."true" (default) â mailbox_password is included."false" â mailbox_password is omitted from every domain object.GET /api/v1/domains?organization_id=recXXXXXXXXXXXXXX{
"total": 1,
"domains": [
{
"id": "recXXXXXXXXXXXXXX",
"domain": "outreach-one.com",
"tag": "campaign-q3",
"redirect": "https://example.com",
"mailbox_password": "âĸâĸâĸâĸâĸâĸâĸâĸ",
"order_type": "google",
"order_id": "recXXXXXXXXXXXXXX",
"payment_id": "recXXXXXXXXXXXXXX",
"domain_provider": "Scaledmail",
"user_id": "recXXXXXXXXXXXXXX",
"total_mailboxes": 2,
"mailbox": [
{
"first_name": "Jane",
"last_name": "Doe",
"alias": "jane"
}
],
"status": "Active"
}
]
}mailbox[].alias with the domain name to build each mailbox's email address ({alias}@{domain}) â or use the Get Mailboxes endpoint, which returns this pre-built as email.curl --location 'https://server.scaledmail.com/api/v1/domains?organization_id=undefined' \
--header 'Authorization: Bearer <token>'{}