Alokai

GetSiteResponse

Response of get site endpoint.

interface GetSiteResponse {
	cached?: boolean;
	data: {
    channel_id: number;
    created_at: string;
    id: number;
    is_checkout_url_customized: boolean;
    ssl_status: "dedicated" | "shared";
    updated_at: string;
    url: string;
    urls: SiteUrl[];
  };
	meta: EmptyMeta;
}

Properties

NameRequiredTypeDescription
cachedOptionalbooleanThis determines if the site is coming from a cached record
dataRequired{ channel_id: number; created_at: string; id: number; is_checkout_url_customized: boolean; ssl_status: "dedicated" | "shared"; updated_at: string; url: string; urls: SiteUrl[]; }Site information.
metaRequiredEmptyMetaEmpty object.

On this page