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
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.
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 modifiedUse the fields[sites]
parameter to request only specific 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"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Partial attributes as specified, e.g. fields[sites]=title,subdomain