Get domain
Get domain details by ID, by calling this API, the domain status will be synced from remote provider.
Path parameters
-
The unique identifier of the domain.
GET /api/domains/{id}
curl \
-X GET https://[tenant_id].logto.app/api/domains/{id} \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": "string",
"domain": "string",
"status": "PendingVerification",
"errorMessage": "string",
"dnsRecords": [
{
"name": "string",
"type": "string",
"value": "string"
}
]
}