Register a domain for the authenticated workspace. Only available for Enterprise Plans.
Python
from dub import Dub with Dub( token="DUB_API_KEY", ) as d_client: res = d_client.domains.register(request={ "domain": "acme.link", }) # Handle response print(res)
{ "domain": "<string>", "status": "<string>", "expiration": 123 }
Default authentication mechanism
The domain to claim. We only support .link domains for now.
1
"acme.link"
The domain was registered.
The domain name.
The status of the domain registration.
The expiration timestamp of the domain (Unix timestamp in milliseconds).
Was this page helpful?