Uptimeify Docs
Whitelabel

List Domains

Returns all custom app domains for the organization. Only domains with role app are returned. Requires admin role.

GET /api/organization/whitelabel/domains

Example (cURL)

curl -X GET "$BASE_URL/api/organization/whitelabel/domains" \
  -H "Cookie: $SESSION_COOKIE" \
  -H "Accept: application/json"

Response

{
  "domains": [
    {
      "id": 1,
      "hostname": "app.example.com",
      "status": "active",
      "role": "app",
      "isPrimary": true,
      "verificationToken": "abc123-def456",
      "verifiedAt": "2026-01-15T10:00:00.000Z",
      "createdAt": "2026-01-14T08:00:00.000Z",
      "updatedAt": "2026-01-15T10:00:00.000Z"
    }
  ]
}

Common errors

  • 401 Unauthorized when not authenticated
  • 403 Forbidden when not an admin

On this page