Skip to main content
GET
/
api
/
v2
/
workspaces
/
current
/
whitelabel-domain
Get organization verified agency domain information
curl --request GET \
  --url https://api.instantly.ai/api/v2/workspaces/current/whitelabel-domain \
  --header 'Authorization: Bearer <token>'
{
  "verified": true,
  "name": "example.com",
  "verification": [
    {
      "type": "TXT",
      "domain": "example.com",
      "value": "vercel-challenge=xyz123",
      "reason": "TXT record required for domain verification"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Default Response

verified
boolean

Whether the domain is verified

Example:

true

name
string

The domain name

Example:

"example.com"

verification
object[]