Site section groups

Group and manage sections of your docs for easier organization.

Section groups let you bundle multiple top-level sections together, offering additional structuring capabilities and simplifying navigation for your readers.

The SiteSectionGroup object

Attributes
objectstring Β· enumRequired

The object type, which is always "site-section-group"

Possible values:
idstringRequired

Unique identifier of the site section group

titlestring Β· min: 1 Β· max: 100Required

Title of the site section group

sectionGroupstringOptional

ID of the parent section group this group belongs to

iconstring Β· icon Β· max: 50Optional

Name of the icon

Example: gear

The SiteSectionGroup object

List all site section groups

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
organizationIdstringRequired

The unique id of the organization

siteIdstringRequired

The unique id of the site

Query parameters
pagestringOptional

Identifier of the page results to fetch.

limitnumber Β· max: 1000Optional

The number of results per page

Responses
200

OK

application/json
Responseall of
get
/orgs/{organizationId}/sites/{siteId}/section-groups
200

OK

Add a section group to a site

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
organizationIdstringRequired

The unique id of the organization

siteIdstringRequired

The unique id of the site

Body
titlestring Β· min: 1 Β· max: 100Required

Title of the site section group

iconone ofOptional
string Β· icon Β· max: 50Optional

Name of the icon

Example: gear
or
string Β· enum | nullableOptionalPossible values:
sectionsstring[]Optional

IDs of the sections to be added to the section group

parentstringOptional

ID of the parent section group to nest this group under. If not provided, the section group will be added at the root of the site.

Responses
post
/orgs/{organizationId}/sites/{siteId}/section-groups
201

Section group added to the site

Delete a site section group

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
organizationIdstringRequired

The unique id of the organization

siteIdstringRequired

The unique id of the site

siteSectionGroupIdstringRequired

The unique id of the site group

Responses
delete
/orgs/{organizationId}/sites/{siteId}/section-groups/{siteSectionGroupId}

No content

Update a site section group

patch
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
organizationIdstringRequired

The unique id of the organization

siteIdstringRequired

The unique id of the site

siteSectionGroupIdstringRequired

The unique id of the site group

Body
titlestring Β· min: 1 Β· max: 100Optional

Title of the site section group

iconone ofOptional
string Β· icon Β· max: 50Optional

Name of the icon

Example: gear
or
string Β· enum | nullableOptionalPossible values:
Responses
200

OK

application/json
patch
/orgs/{organizationId}/sites/{siteId}/section-groups/{siteSectionGroupId}
200

OK

Add a section to a section group

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
organizationIdstringRequired

The unique id of the organization

siteIdstringRequired

The unique id of the site

siteSectionGroupIdstringRequired

The unique id of the site group

Body
sectionIdstringRequired

ID of the section to add to the section group

Responses
post
/orgs/{organizationId}/sites/{siteId}/section-groups/{siteSectionGroupId}/sections
201

Section added to the section group

Remove a section from a section group

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
organizationIdstringRequired

The unique id of the organization

siteIdstringRequired

The unique id of the site

siteSectionGroupIdstringRequired

The unique id of the site group

siteSectionIdstringRequired

The unique id of the section within a site

Responses
delete
/orgs/{organizationId}/sites/{siteId}/section-groups/{siteSectionGroupId}/sections/{siteSectionId}

No content

Deprecated

Move a site section group to a new position. (Deprecated) use sortSiteStructure instead.

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
organizationIdstringRequired

The unique id of the organization

siteIdstringRequired

The unique id of the site

siteSectionGroupIdstringRequired

The unique id of the site group

Body
Responses
200

Site section group moved

application/json
post
/orgs/{organizationId}/sites/{siteId}/section-groups/{siteSectionGroupId}/move

Last updated

Was this helpful?