Get domains

GET /api/domains

Get all of your custom domains.

Responses

  • 200 application/json

    A list of domains.

    Hide response attributes Show response attributes object
    • id string Required

      Minimum length is 1, maximum length is 21.

    • domain string Required

      Minimum length is 1, maximum length is 256.

    • status string Required

      Values are PendingVerification, PendingSsl, Active, or Error.

    • errorMessage string | null Required

      Maximum length is 1024.

    • dnsRecords array[object] Required
      Hide dnsRecords attributes Show dnsRecords attributes object
  • 401

    Unauthorized

  • 403

    Forbidden

GET /api/domains
curl \
 -X GET https://[tenant_id].logto.app/api/domains
Response examples (200)
[
  {
    "id": "string",
    "domain": "string",
    "status": "PendingVerification",
    "errorMessage": "string",
    "dnsRecords": [
      {
        "name": "string",
        "type": "string",
        "value": "string"
      }
    ]
  }
]