Skip to main content
GET
/
v3
/
teams
/
{team}
/
custom-domains
/
{domain}
/
status
Get Domain Status
curl --request GET \
  --url https://app.plugchoice.com/api/v3/teams/{team}/custom-domains/{domain}/status \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "hostname": "<string>",
  "status": "<string>",
  "ssl_status": "<string>",
  "can_retry": true,
  "activated_at": "<string>"
}
Returns the current setup status of a custom domain, including SSL certificate status and activation state.
team
string
required
The UUID of the team.
domain
integer
required
The ID of the custom domain.

Response

id
integer
The numeric ID of the custom domain.
hostname
string
The registered hostname.
status
string
The current domain status (e.g., pending, active, failed).
ssl_status
string
The SSL certificate status (e.g., pending, active, failed).
can_retry
boolean
Whether the provisioning can be retried (applicable when the setup has failed).
activated_at
string
ISO 8601 timestamp of when the domain was activated. null if not yet active.