Course Updated
The course.updated
event is triggered when an existing course is updated in the system.
Event Properties
Property | Type | Description |
---|---|---|
id | string | The unique identifier of the course |
name | string | The updated name of the course |
description | string | The updated description of the course |
state | string | The current state of the course |
type | string | The type of the course (always “Course”) |
created_at | string | The timestamp when the course was created |
updated_at | string | The timestamp when the course was last updated |
slug | string | The updated URL-friendly slug of the course |
plans | array | An array of updated plans associated with the course |
Plan Properties
Each plan in the plans
array has the following properties:
Property | Type | Description |
---|---|---|
id | string | The unique identifier of the plan |
name | string | The updated name of the plan |
description | string | The updated description of the plan |
currency | string | The currency code for the plan’s price |
amount | integer | The updated price amount in the smallest currency unit |
created_at | string | The timestamp when the plan was created |
updated_at | string | The timestamp when the plan was last updated |