Site details
Sites
Site details
The site system is a fundamental part of Kajabi’s platform, representing a customer’s branded presence and serving as the container for their products, courses, and other content. Each site can be customized extensively while maintaining the core functionality needed for e-learning and digital product delivery.
Site Attributes
title(string) - A required field that represents the name of the sitesubdomain(string) - The subdomain of the site, used for routing and site identificationcreated_at(string) - A read-only timestamp, ISO date string format, that indicates when the site was createdupdated_at(string) - A read-only timestamp, ISO date string format, that indicates when the site was last modified
Sparse Fields
Use the fields[sites] parameter to request only specific attributes:
Only return title and subdomain attributes
GET /v1/sites/123?fields[sites]=title,subdomain
Response will only include requested fields
{
"data": {
"id": "123",
"type": "sites",
"attributes": {
"title": "Advanced Training Site",
"subdomain": "advanced-training"
}
}
}
GET
Site details
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Partial attributes as specified, e.g. fields[sites]=title,subdomain