Thinkific · Schema

GroupResponse

Online CoursesE-LearningLMSCourse CreationEnrollmentsUsersEducationDigital ProductsWebhooks

Properties

Name Type Description
id number The ID of the Group
name string The name of the Group
token string The 8-character unique identifier for the Group
created_at string The date/time the Group was created
View JSON Schema on GitHub

JSON Schema

thinkific-group.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/thinkific/refs/heads/main/json-schema/thinkific-group.json",
  "title": "GroupResponse",
  "required": [
    "id",
    "created_at",
    "name",
    "token"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "The ID of the Group",
      "example": 1
    },
    "name": {
      "type": "string",
      "description": "The name of the Group",
      "example": "New Group 1"
    },
    "token": {
      "type": "string",
      "description": "The 8-character unique identifier for the Group",
      "example": "c2395613"
    },
    "created_at": {
      "type": "string",
      "description": "The date/time the Group was created",
      "format": "date-time",
      "example": "2019-01-01T01:01:00Z"
    }
  }
}