Chats
Resources for interacting with other Skool accounts through the chat
Last updated
Resources for interacting with other Skool accounts through the chat
Last updated
GET /v1/chats/?page=1&session_id=text HTTP/1.1
Host:
x-api-secret: text
Accept: */*
[
{
"id": "text",
"last_message_id": "text",
"user": {
"id": "text",
"username": "text",
"first_name": "text",
"last_name": "text",
"picture_bubble": "text",
"picture_profile": "text"
}
}
]GET /v1/chats/{chat_id}?message_id=text&limit=1&session_id=text HTTP/1.1
Host:
x-api-secret: text
Accept: */*
[
{
"id": "text",
"author_id": "text",
"content": "text"
}
]POST /v1/chats/{chat_id}?session_id=text HTTP/1.1
Host:
x-api-secret: text
Content-Type: application/json
Accept: */*
Content-Length: 18
{
"content": "text"
}POST /v1/chats/{chat_id}/read?session_id=text HTTP/1.1
Host:
x-api-secret: text
Accept: */*
POST /v1/chats/{chat_id}/unread?session_id=text HTTP/1.1
Host:
x-api-secret: text
Accept: */*