Inbox Academy

Inbox Academy is a platform for running courses over email, onboarding sequences, training programs, and multi-lesson courses that arrive in a learner's inbox…

От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноМожет изменять данные

Что умеет

  • Courses.List: List the courses the caller can see. Each row has: course_id (use it with list_lessons / create_lesson / create_quiz), organization_id, title, enabled (actively delivering content to lea
  • Lessons.Get Content: Get one lesson's content as an HTML string: `<h1>{title}</h1>{body}`.
  • Lessons.List: List a course's lessons, ordered by their position in the course. Each entry has: course_content_id (references the lesson's slot in the course), lesson_id (use with get_lesson_content /

Какие данные видит

Нужен ли аккаунт

Не нужен: сервер работает без входа

Inbox Academy is a platform for running courses over email, onboarding sequences, training programs, and multi-lesson courses that arrive in a learner's inbox rather than on a website. Each lesson is timed relative to the previous send or to completion of the previous quiz, so every learner moves through the sequence at their own pace from the day they enrol.

This server gives an assistant access to the authoring side. It can list the courses in your organization, list and read the lessons in a course, and draft new lessons and quizzes at the end of one. Quizzes support multiple questions with a pass threshold, a deadline, and optional reminders.

New lessons and quizzes are created unpublished, a human publishes them in the web app before anything reaches a learner. Authentication is OAuth 2.1, and the server only ever sees the courses your account can already see.

Список инструментов сервера (6)

Технические названия из tools/list. Нужны только разработчикам.

courses.listList the courses the caller can see. Each row has: course_id (use it with list_lessons / create_lesson / create_quiz), organization_id, title, enabled (actively delivering content to learners) and is_public (listed on the organization's public page). A platform superuser sees every organization's courses (organization_id tells them apart); everyone else sees only their own organization's.
lessons.get_contentGet one lesson's content as an HTML string: `<h1>{title}</h1>{body}`.
lessons.listList a course's lessons, ordered by their position in the course. Each entry has: course_content_id (references the lesson's slot in the course), lesson_id (use with get_lesson_content / update_lesson), title, priority (1-based position) and is_published.
lessons.updateUpdate a lesson's title and/or content. Only the fields you pass are changed. Returns the lesson's HTML afterwards (same shape as get_lesson_content).
quizzes.createCreate a quiz at the end of a course. Returns the new course_content id. The quiz is unpublished until a human publishes it in the web app.
lessons.createCreate a lesson at the end of a course. Returns the new course_content id. The lesson is unpublished until a human publishes it in the web app.