Lodol Docs

Skool

API actions for the Skool integration.

Skool

Post updates, invite members, and manage your Skool community.


Comment on post

Add a comment to a Skool post.

Parameters

ParameterTypeRequiredDescription
group_idstringYesThe ID of the Skool group.
post_idstringYesThe ID of the Skool post.
bodystringYesThe text of your comment.

Response

{
  "comment_id": "comment_456"
}

Create post

Create a new post in a Skool group.

Parameters

ParameterTypeRequiredDescription
group_idstringYesThe ID of the Skool group.
titlestringYesPost title.
bodystringYesThe main text of the post.

Response

{
  "post_id": "post_123"
}

Invite member

Invite a new member to a Skool group.

Parameters

ParameterTypeRequiredDescription
group_idstringYesThe ID of the Skool group.
emailstringYesThe email address of the person you want to invite.
rolestringNoThe role to give the new member: member or admin.

Response

{
  "invitation_id": "invite_789"
}

List courses

List the courses in your Skool community.

Response

[
  {}
]

List groups

List all groups in your Skool community.

Response

[
  {}
]

List members

List the members of a Skool group.

Parameters

ParameterTypeRequiredDescription
group_idstringYesThe ID of the Skool group.

Response

[
  {}
]

Add reaction

Add a reaction to a Skool post.

Parameters

ParameterTypeRequiredDescription
group_idstringYesThe ID of the Skool group.
post_idstringYesThe ID of the Skool post.
reactionstringYesThe reaction to add, for example an emoji like 👍.

Response

{
  "reaction_id": "reaction_123"
}

On this page