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
| Parameter | Type | Required | Description |
|---|---|---|---|
group_id | string | Yes | The ID of the Skool group. |
post_id | string | Yes | The ID of the Skool post. |
body | string | Yes | The text of your comment. |
Response
{
"comment_id": "comment_456"
}Create post
Create a new post in a Skool group.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
group_id | string | Yes | The ID of the Skool group. |
title | string | Yes | Post title. |
body | string | Yes | The main text of the post. |
Response
{
"post_id": "post_123"
}Invite member
Invite a new member to a Skool group.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
group_id | string | Yes | The ID of the Skool group. |
email | string | Yes | The email address of the person you want to invite. |
role | string | No | The 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
| Parameter | Type | Required | Description |
|---|---|---|---|
group_id | string | Yes | The ID of the Skool group. |
Response
[
{}
]Add reaction
Add a reaction to a Skool post.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
group_id | string | Yes | The ID of the Skool group. |
post_id | string | Yes | The ID of the Skool post. |
reaction | string | Yes | The reaction to add, for example an emoji like 👍. |
Response
{
"reaction_id": "reaction_123"
}