Introduction
In Docebo, you can create webhooks to trigger once an event occurs in your platform, sending you information about that event to a specific payload URL. This allows you to collect data from your learning platform to build reports, integrations, dashboards and more. You can, for example, also connect to your Human Capital Management system (HCM), email non-Docebo users about actions that occur within the platform or update your Content Storage Management.
Refer to this article on creating and managing webhooks on how to activate the webhook functionality and on how to create and manage webhooks.
This article lists all of the events that can be tracked via webhooks, including a detailed description of the payloads. Events are divided into areas, for better understanding.
Events triggering
The events managed by the Webhooks app are fired according to the platform's main logic. They can be triggered by the user through the platform interface and by APIs. The same action may trigger different events because of the platform built-in logic. Please make sure to check your use cases for a proper webhook configuration.
For example, you have created a webhook including the following events:
Enrollment has been updated (event name: course.enrollment.updated)
Learner completed course (event name: course.enrollment.completed)
If the user enrollment status is set to completed, the triggered event will be course.enrollment.completed and not course.enrollment.updated, despite the fact that the action triggering the event is an update.
Events common properties
Every event tracks specific details, but all of them have the following common properties:
Property | Description |
|---|---|
| A unique message ID to identify the webhook. |
| The unique identifier of the webhook. |
| The domain of the platform where the webhook originated. |
| The event name that triggered the webhook. |
|
|
| Background job alphanumeric unique identifier, it is displayed only when the event is generated by a background job. |
| Depending on the event, a different payload containing different information. |
If you have activated the payload collection option, when webhooks include more than one event, the payload webhook common property turns into payloads, indicating that the message includes more events. If you enable the payload collection feature, make sure that your endpoint system is ready to receive webhooks with two different structures.
The following is an example of a single payload, triggered because a user has been deleted:
{
"message_id":"wh-638ce960-1363-11e9-a15d-d1c47c8f7593",
"webhook_id":11,
"original_domain":"example-domain.docebosaas.com",
"event":"user.deleted",
"fired_by_batch_action":false,
"payload":{
"user_id":12301,
"deletion_date":"2019-01-08 16:35:05",
"fired_at":"2019-01-08 16:35:05"
}
}Here is an example of payload collection, triggered because three users have been deleted from the platform, with a single process:
{
"event":"user.deleted",
"fired_by_batch_action":false,
"message_id":"wh-d2f70d80-ab24-11ea-8467-5972fffe49aa",
"webhook_id":11,
"original_domain":"example-domain.docebosaas.com",
"payloads":[
{
"fired_at":"2020-06-10 14:15:18",
"user_id":13366,
"deletion_date":"2020-06-10 14:15:18"
},
{
"fired_at":"2020-06-10 14:15:18",
"user_id":13369,
"deletion_date":"2020-06-10 14:15:18"
},
{
"fired_at":"2020-06-10 14:15:18",
"user_id":13376,
"deletion_date":"2020-06-10 14:15:18"
}
]
}Notes about events common properties
The details included in each event are the same, independently from whether it is a single event or a payload collection. The webhook structure changes depending on whether the payload includes one or more events.
Some events include the
user_idproperty to track the user performing or involved in the action tracked by the webhook. When Superadmins impersonate other users or Power Users, the trackeduser_idis the ID of the impersonated user or Power User.
Events
The following is a list of all available events, divided into areas:
Assets
Asset has been deleted (contribute.deleted)
Triggers when an asset has been deleted.
For more information, please see the Sharing and managing content (opens in a new tab) article of the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The asset ID. |
| The asset title. |
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "contribute.deleted",
"fired_by_batch_action": false,
"message_id": "wh-20250821-143121-0403fea7-1723-480d-b91e-a157bf0c536a",
"payload": {
"fired_at": "2025-08-21 14:31:20",
"id": 373,
"title": "Example icon",
"extra_data": null
}
}Asset has been unpublished (contribute.unpublished)
Triggers when an asset has been unpublished.
For more information, please see the Sharing and managing content (opens in a new tab) article of the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The asset ID. |
| The asset type. Possible values are:
|
| The asset title. |
| The date of the update in UTC. Format:
|
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "contribute.unpublished",
"fired_by_batch_action": false,
"message_id": "wh-20290821-142856-5effd40a-782e-4ee4-8225-b7c94234124c",
"payload": {
"fired_at": "2025-08-21 14:28:55",
"asset_id": 373,
"asset_type": 7,
"title": "Example icon",
"update_date": "2025-08-21 14:28:55",
"extra_data": null
}
}Asset has been updated (contribute.updated)
Triggers when an asset has been updated.
For more information, please see the chapter Editing the details of your asset (opens in a new tab), found in the Sharing and managing content (opens in a new tab) article of the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The asset ID. |
| The asset title. |
| The asset type. Possible values are:
|
| The asset visibility. Possible values are:
|
| The asset publication status. |
| The extra data section.
|
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "contribute.updated",
"fired_by_batch_action": false,
"message_id": "wh-20290821-142434-b1b5fb54-fb7b-455f-8756-960527352737",
"payload": {
"fired_at": "2025-08-21 14:24:33",
"id": 373,
"title": "Example icon",
"type": "images",
"visibility": "public",
"published": true,
"extra_data": {
"description": "<p>An updated example picture</p>",
"tags": [],
"channels": [
17,
22,
69
]
}
}
}Asset has been uploaded (contribute.created)
Triggers when an asset has been uploaded.
For more information, please see the chapter Upload an asset to the platform (opens in a new tab), found in the Sharing and managing content (opens in a new tab) article of the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The asset ID. |
| The asset title. |
| The asset type. Possible values are:
|
| The asset visibility. Possible values are:
|
| The asset publication status. |
| The extra data section.
|
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "contribute.created",
"fired_by_batch_action": false,
"message_id": "wh-20290821-142053-77fc4832-cddf-4d66-a38e-c2fbef46ecca",
"payload": {
"fired_at": "2025-08-21 14:20:50",
"id": 373,
"title": "Example icon",
"type": "images",
"visibility": "private",
"published": true,
"extra_data": {
"description": "<p>An example description</p>",
"tags": [],
"channels": [
17,
22,
69
]
}
}
}Invitation to watch deleted (contribute.watchinvitation.deleted)
Triggers when an invitation to watch a published asset has been deleted.
For more information, please see the chapter Inviting other users to watch content (opens in a new tab) found in the Sharing and managing content (opens in a new tab) article of the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC Format:
|
| The asset ID. |
| The users invited to watch. |
| The IDs of the users no longer invited to watch. |
| The channels where the asset has been loaded. |
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "contribute.watchinvitation.deleted",
"fired_by_batch_action": false,
"message_id": "wh-20290821-142641-2b8293a4-aa48-411a-b4eb-f3c39f3c39d9",
"payload": {
"fired_at": "2025-08-21 14:26:36",
"id_asset": 373,
"invitations": {
"users": [
13725
],
"channels": []
},
"extra_data": null
}
}Background jobs
Background job aborted (bj.execution.aborted)
Triggers when a background job has been aborted.
For more information, please see the article Managing background jobs (opens in a new tab) in the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The background job alphanumeric unique identifier. |
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "bj.execution.aborted",
"fired_by_batch_action": false,
"message_id": "wh-20290821-145104-b9d7ca21-9ff0-4d11-94e6-0111202a4f0e",
"payload": {
"fired_at": "2025-08-21 14:51:03",
"job_hash": "1b4be2e4b4c5601b8316726e11d94217e2af51ea",
"extra_data": null
}
}Background job completed (bj.execution.completed)
Triggers when a background job has executed successfully.
For more information, please see the article Managing background jobs (opens in a new tab) in the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The background job alphanumeric unique identifier. |
| If the background job ended with errors, the number of errors occurred. |
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "bj.execution.completed",
"fired_by_batch_action": false,
"message_id": "wh-20290821-144303-086fdaef-3bf2-4349-a533-bcd909f7d968",
"payload": {
"fired_at": "2025-08-21 14:43:02",
"job_hash": "1fdb26fce5c533800f243ed9cd5b072288f1d3c4",
"errors_count": 0,
"extra_data": null
}
}Background job created (bj.created)
Triggers when a background job has been created.
For more information, please see the article Managing background jobs (opens in a new tab) in the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC Format:
|
| The background job alphanumeric unique identifier. |
| The background job name, automatically assigned by the platform. |
| The API call that will be used for the scheduled background job. |
| The method used in the API call. |
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "bj.created",
"fired_by_batch_action": false,
"message_id": "wh-20290821-144243-0a9b14e1-04f4-4d21-9dfc-5221b8c6acfd",
"payload": {
"fired_at": "2025-08-21 14:42:41",
"job_hash": "1fdb26fce5c533800f243ed9cd5b072288f1d3c4",
"name": "Extraction for background job report",
"endpoint": "/analytics/v1/exports/polling/echo",
"method": "GET",
"extra_data": null
}
}Background job deleted (bj.deleted)
Triggers when a background job has been deleted.
For more information, please see the article Managing background jobs (opens in a new tab) in the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The background job alphanumeric unique identifier. |
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "bj.deleted",
"fired_by_batch_action": false,
"message_id": "wh-20290821-144743-d85c46f4-4d43-412e-b38c-31ccb5809845",
"payload": {
"fired_at": "2025-08-21 14:47:42",
"job_hash": "1fdb26fce5c533800f243ed9cd5b072288f1d3c4",
"extra_data": null
}
}Background job execution started (bj.execution.started)
Triggers when the execution of a background job has started.
For more information, please see the article Managing background jobs (opens in a new tab) in the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The background job alphanumeric unique identifier. |
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "bj.execution.started",
"fired_by_batch_action": false,
"message_id": "wh-20290821-144303-d93a044b-7fa8-4020-83f5-c31c12ebf71c",
"payload": {
"fired_at": "2025-08-21 14:42:49",
"job_hash": "1fdb26fce5c533800f243ed9cd5b072288f1d3c4",
"extra_data": null
}
}Branches
Branch has been created (branch.created)
Triggers when a branch has been created.
For more information, please see the chapter Creating a branch in your organizational chart (opens in a new tab), found in the Organizing users with branches (opens in a new tab) article of the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| ID of the created branch. |
| ID of the branch into which the new branch has been created. |
| Code of the new branch, or an empty string. |
| The date and time of the moment the event was fired in UTC. Format:
|
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "branch.created",
"fired_by_batch_action": false,
"message_id": "wh-20290821-150417-b018ccfa-f0b3-4219-8a48-db0be1f40a45",
"payload": {
"fired_at": "2025-08-21 15:04:11",
"branch_id": 39,
"parent_id": 0,
"code": "DP01",
"name": "DevPortal",
"extra_data": null
}
}Branch has been deleted (branch.deleted)
Triggers when a branch has been deleted.
For more information, please see the chapter Managing folders and branches (opens in a new tab), found in the Organizing users with branches (opens in a new tab) article of the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| ID of the deleted branch. |
| The date and time of the moment the event was fired in UTC. Format:
|
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "branch.deleted",
"fired_by_batch_action": false,
"message_id": "wh-20290821-151233-474cdfa7-615b-4e49-a2cc-8741bc863723",
"payload": {
"fired_at": "2025-08-21 15:12:32",
"branch_id": 39,
"code": "DP001",
"name": "DevPortal",
"extra_data": null
}
}Branch has been updated (branch.updated)
Triggers when a branch has been updated.
For more information, please see the chapter Managing folders and branches (opens in a new tab), found in the Organizing users with branches (opens in a new tab) article of the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| ID of the created branch. |
| ID of the branch into which the branch has been moved. Not present if the branch has not been moved. |
| New code of the branch, can be an empty string. Not present if the code has not been changed. |
| The date and time of the moment the event was fired in UTC. Format:
|
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "branch.updated",
"fired_by_batch_action": false,
"message_id": "wh-20290821-150628-a5bdb134-a74c-4f17-a73c-2e3bbecc4b59",
"payload": {
"fired_at": "2025-08-21 15:06:26",
"branch_id": 39,
"code": "DP001",
"name": "DevPortal",
"extra_data": null
}
}User assigned to a branch (branch.user.added)
Triggers when a user has been assigned to a branch.
For more information, please see the chapter Adding users to a branch (opens in a new tab) and Moving users to a branch (opens in a new tab), found in the Organizing users with branches (opens in a new tab) article of the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| ID of the user assigned to the branch. |
| Username of the user. |
| ID of the branch to which the user has been assigned. |
| Name of the branch to which the user has been assigned. |
| The date and time of the moment the event was fired in UTC. Format:
|
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "branch.user.added",
"fired_by_batch_action": false,
"message_id": "wh-20290821-150920-74a1c843-b0cb-40b8-b8d5-a0443f580f37",
"payload": {
"fired_at": "2025-08-21 15:09:18",
"user_id": 14230,
"branch_id": 39,
"username": "test.exampleUser",
"branch_name": "DevPortal",
"user_uuid": "f71c9230-ec42-11ee-b13f-06c4aa1316bd",
"extra_data": null
}
}User removed from a branch (branch.user.removed)
Triggers when a user has been removed from a branch.
For more information, please see the chapter Removing users from a branch (opens in a new tab), found in the Organizing users with branches (opens in a new tab) article of the Docebo knowledge base (opens in a new tab).
Property | Description |
|---|---|
| ID of the user removed from the branch |
| username of the user removed from the branch |
| ID of the branch from which the user has been removed |
| Name of the branch from which the user has been removed |
| The date and time of the moment the event was fired in UTC. Format:
|
{
"webhook_id": 27,
"original_domain": "example.exampledomain.com",
"event": "branch.user.removed",
"fired_by_batch_action": false,
"message_id": "wh-20290821-151044-3b9ba22a-a4a4-40fb-8449-22600bcb2f24",
"payload": {
"fired_at": "2025-08-21 15:10:43",
"user_id": 14230,
"branch_id": 39,
"username": "test.exampleUser",
"branch_name": "DevPortal",
"user_uuid": "f71c9230-ec42-11ee-b13f-06c4aa1316bd",
"extra_data": null
}
}Central repository
Training material pushed to course (tmrepo.course.trainingmaterial.added)
Triggers when training material has been added to a course
Property | Description |
|---|---|
| ID of the user who assigned the training material to the course from the Central repository. |
| Username of the user who assigned the training material to the course from the Central repository. |
| ID of the course to which the training material was assigned from the Central repository. |
| Title of the course to which the training material was assigned from the Central repository. |
| Type of course to which the training material was assigned from the Central repository. Possible values are:
|
| Title of the training material assigned to the course from the Central repository. |
| The type of training material. Possible values are:
|
| ID of the training material assigned to the course from the Central repository. |
| Version ID of the training material assigned to the course from the Central repository. |
| Version name of the training material coming from the Central repository that was removed from the course. |
| The date and time of the moment the event was fired in UTC. Format:
|
Training material removed from course (tmrepo.course.trainingmaterial.removed)
Triggers when training material has been removed from a course
Property | Description |
|---|---|
| ID of the user who removed the training material coming from the Central repository from the course. |
| Username of the user who removed the training material coming from the Central repository from the course. |
| ID of the course from which the training material coming from the Central repository was removed. |
| Title of the course from which the training material coming from the Central repository was removed. |
| Type of course from which the training material coming from the Central repository was removed. Possible values are:
|
| Title of the training material coming from the Central repository that was removed from the course. |
| Type of training material. Possible values are:
|
| ID of the training material coming from the Central repository that was removed from the course. |
| Version ID of the training material coming from the Central repository that was removed from the course. |
| Version name of the training material assigned to the course from the Central repository. |
| Number of users who played the training material. |
| The date and time of the moment the event was fired in UTC. Format:
|
Training material updated (tmrepo.trainingmaterial.updated)
Triggers when training material has been updated in a course
Property | Description |
|---|---|
| ID of the user who updated the training material in the Central repository. |
| Username of the user who updated the training material in the Central repository. |
| Title of the training material updated in the Central repository. |
| the type of training material. Possible values are:
|
| ID of the training material updated in the Central repository. |
| Number of courses the updated training material is assigned to. |
| Number of the training material version updated in the Central repository. |
| Number of users who played the training material. |
| The date and time of the moment the event was fired in UTC. Format:
|
Certifications
Certification awarded (certification.award.awarded)
Triggers when a certification has been awarded
Tip
This webhook is intended for use with external certification providers and is designed to be used only in conjunction with Docebo Connect. In order for this webhook to be available in your platform you must have Docebo Connect activated and in the Advanced options tab of the Advanced settings menu the External certifications functionality found in the Connect section must be activated. Please note that this option in the advanced settings is only available after Connect has been activated on your platform.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. |
| The ID of the certification. |
| The ID of the user. |
| The issue date. |
| The expiration date. Use |
| Returns |
| The type the certification is associated with. |
| The user ID of the certification in the externally integrated platform. |
{
"event": "certification.award.awarded",
"fired_by_batch_action": false,
"message_id": "wh-366d69b0-b5f1-11ee-89d3-e3991e9d4525",
"webhook_id":11,
"original_domain":"example-domain.docebosaas.com",
"payload": {
"fired_at": "2024-01-18 11:03:28",
"certification_id": 1,
"user_id": 100,
"issue_date": "2024-01-16",
"expiration_date": null,
"always_valid": 1,
"association_type": "external_integration",
"certification_user_id": 140
}
}Certification revoked (certification.award.revoked)
Triggers when a certification has been revoked
Tip
This webhook is intended for use with external certification providers and is designed to be used only in conjunction with Docebo Connect. In order for this webhook to be available in your platform you must have Docebo Connect activated and in the Advanced options tab of the Advanced settings menu the External certifications functionality found in the Connect section must be activated. Please note that this option in the advanced settings is only available after Connect has been activated on your platform.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. |
| The ID of the certification. |
| The ID of the user. |
| The issue date. |
| The expiration date. Use |
| Returns |
| The type the certification is associated with. |
| The user ID of the certification in the externally integrated platform. |
Example with single payload:
{
"event": "certification.award.revoked",
"fired_by_batch_action": false,
"message_id": "wh-ad70bb50-b6bb-11ee-ac50-7561ccd0056e",
"webhook_id":11,
"original_domain":"example-domain.docebosaas.com",
"payload": {
"fired_at": "2024-01-19 11:12:46",
"certification_id": 123,
"user_id": 1,
"issue_date": "2024-01-16",
"expiration_date": null,
"always_valid": 1,
"association_type": "external_integration",
"certification_user_id": "1000"
}
}Example with multiple payloads:
{
"event": "certification.award.revoked",
"fired_by_batch_action": false,
"message_id": "wh-ab6569c0-b5f1-11ee-89d3-e3991e9d4525",
"webhook_id":11,
"original_domain":"example-domain.docebosaas.com",
"payloads": [
{
"fired_at": "2024-01-18 11:06:44",
"certification_id": 123,
"user_id": 1,
"issue_date": "2024-01-16",
"expiration_date": null,
"always_valid": 1,
"association_type": "external_integration",
"certification_user_id": 1000
},
{
"fired_at": "2024-01-18 11:06:44",
"certification_id": 123,
"user_id": 2,
"issue_date": "2024-01-16",
"expiration_date": "2024-01-23",
"always_valid": 0,
"association_type": "external_integration",
"certification_user_id": 2000
}
]
}Certification updated (certification.award.updated)
Triggers when a certification has been updated
Tip
This webhook is intended for use with external certification providers and is designed to be used only in conjunction with Docebo Connect. In order for this webhook to be available in your platform you must have Docebo Connect activated and in the Advanced options tab of the Advanced settings menu the External certifications functionality found in the Connect section must be activated. Please note that this option in the advanced settings is only available after Connect has been activated on your platform.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. |
| The ID of the certification. |
| The ID of the user. |
| The updated issue date. |
| The previous issue date. |
| The updated expiration date or |
| The previous expiration date or |
| Returns |
| The previous value for |
| The type the certification is associated with. |
| The user ID of the certification in the externally integrated platform. |
{
"event": "certification.award.updated",
"fired_by_batch_action": false,
"message_id": "wh-c4e72d30-e516-11ee-97d3-3b0acad5c01f",
"webhook_id":11,
"original_domain":"example-domain.docebosaas.com",
"payload": {
"fired_at": "2024-03-18 11:00:41",
"certification_id": 2,
"user_id": 13107,
"issue_date": "2023-01-12",
"issue_date_old": "2023-01-12",
"expiration_date": "2024-01-12",
"expiration_date_old": "2024-01-12",
"always_valid": 0,
"always_valid_old": 0,
"association_type": "manual"
}
}Channels
Channel content has been assigned (channel.content.assigned)
Triggers when content has been assigned to a channel
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| Channel ID. |
| Channel name. |
| Channel language. |
| The ID of each piece of content assigned. |
| The type of each piece of content assigned. Possible values are:
|
Channel content has been removed (channel.content.removed)
Triggers when content has been removed from a channel
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| Channel ID. |
| Channel name. |
| Channel language. |
| The ID of each piece of content assigned. |
| The type of each piece of content assigned. Possible values are:
|
Channel created (channel.created)
Triggers when a channel is created
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the newly created channel. |
| Channel name. |
| Channel language. |
| Who is allowed to upload content to the channel. Possible values are:
|
| Whether the channel is shown or not. Possible values are:
|
| The channel creation date in UTC. Format:
|
|
|
Channel deleted (channel.deleted)
Triggers when a channel is deleted
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the deleted channel. |
| Channel name. |
| Channel language. |
| Who is allowed to upload content to the channel. Possible values are:
|
| Whether the channel is shown or not. Possible values are:
|
| The channel deletion date in UTC Format:
|
| Extra data section. |
Channel expert added (channel.expert.added)
Triggers when an expert is added to a channel
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| Expert ID. |
| ID of the channel associated with the expert. |
| Extra data section. |
Channel expert removed (channel.expert.removed)
Triggers when an expert is removed from a channel
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| Expert ID. |
| ID of the channel associated with the expert. |
| Extra data section. |
No payload available
Channel updated (channel.updated)
Triggers when a channel is updated
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the updated channel. |
| Channel name. |
| Channel language. |
| Who is allowed to upload content to the channel. Possible values are:
|
| Whether the channel is shown or not. Possible values are:
|
| The channel update date in UTC. Format:
|
|
|
Course additional fields
Course additional field has been deleted (courseadditionalfield.deleted)
Triggers when a course additional field has been deleted
Property | Description |
|---|---|
| ID of the deleted additional field |
| Type of course from which the additional field was deleted. Possible values are:
|
| The type of additional field. Possible values are:
|
| Name of the deleted additional field. |
| The date and time of the moment the event was fired in UTC. Format:
|
Course catalog
Course removed from catalog (catalog.course.deleted)
Triggers when a course is removed from a catalog
Property | Description |
|---|---|
| ID of the catalog from where the course was deleted. |
| ID of the course deleted from the catalog. |
| The date and time of the moment the event was fired in UTC. Format:
|
Learning plan removed from catalog (catalog.learningplan.deleted)
Triggers when a learning plan is removed from a catalog
Property | Description |
|---|---|
| ID of the catalog from where the learning plan was deleted. |
| ID of the learning plan deleted from the catalog. |
| The date and time of the moment the event was fired in UTC. Format:
|
Courses
Course created (course.created)
Triggers when a course is created.
Property | Description |
|---|---|
| ID of the course. |
| Course title. |
| Type of course. Possible values are
|
| Course code (can be empty or |
| The date of the creation in UTC. Format:
|
| The date and time of the moment the event was fired in UTC. Format:
|
| Course start date. |
| Course end date. |
| Course language. |
| Course duration, expressed in seconds. |
|
|
Course deleted (course.deleted)
Triggers when a course is deleted
Property | Description |
|---|---|
| ID of the course. |
| Title of the course. |
| Type of course. Possible values are:
|
| Course code (can be empty or |
| The date of the deletion in UTC. Format:
|
| The date and time of the moment the event was fired in UTC. Format:
|
| Course start date. |
| Course end date. |
| Course language. |
| Course duration, expressed in seconds. |
Course properties have been changed (course.updated)
Triggers when the course properties have been updated.
Property | Description |
|---|---|
| ID of the course. |
| Title of the course. |
| Type of course. Possible values are:
|
| Course code (can be empty or |
| The date of the update in UTC. Format:
|
| The date and time of the moment the event was fired in UTC. Format:
|
| Course start date. |
| Course end date. |
| Course language. |
| Course duration, expressed in seconds. |
| The list of assigned skills, each one containing:
|
|
|
The course has been marked as outdated (content.markedoutdated)
Triggers if a course has been marked as outdated
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the course marked as outdated. |
| ID of the user who marked as outdated. |
| Number of times the course has been marked as outdated. |
User has rated a course (course.rating.updated)
Triggers when a course is rated by a user
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the rated course. |
| ID of the user who rated the course. |
| Rating value. |
| Average course rating, including the current user rating. |
| Number of ratings received by the course. |
Enrollments
User enrollment in a course has been updated (course.enrollment.updated)
Triggers when the user enrollment in a course has been updated
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user enrolled. |
| ID of the course to which the user is enrolled. |
| A string that represents the new enrollment status. Possible values are:
|
| User level in the course. Possible values are:
|
| The date when the enrollment was recorded, in UTC. Format:
|
| The date when the enrollment validity starts, in UTC. Format:
|
| The date when the enrollment validity starts, in UTC Format:
|
| ID of the user enrolling the user identified by the |
|
|
ILT session enrollment updated (ilt.session.enrollment.updated)
Triggers when an ILT session’s enrollment has been updated
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user. |
| ID of the course. |
| ID of the ILT session associated with the course. |
| Name of the session in which the user has been enrolled. |
| The enrollment level of the user. Possible values are:
|
| Date of the enrollment. |
| Start of the validity period for the enrollment (can be |
| End of the validity period (can be |
| ID of the Superadmin or Power User who enrolled the user, or the user ID if the user enrolled by themself. |
| Enrollment status. Possible values are:
|
|
|
Learner completed course (course.enrollment.completed)
Triggers when a learner completes a course
Property | Description |
|---|---|
| ID of the user. |
| ID of the course. |
| Date of completion. |
| The date and time of the moment the event was fired in UTC. Format:
|
| User level in the course. Possible values are:
|
| ID of the user enrolling the user identified by the |
| Enrollment status. Possible values are:
|
| The date when the enrollment was recorded in UTC. Format:
|
| The date when the enrollment validity starts, in UTC. Format:
|
| The date when the enrollment validity ends, in UTC. Format:
|
| The learning plan enrollment priority attribute. Possible values are: This field is tracked only if the Show the Enrollment attributes option is enabled in the platform's advanced settings menu. |
|
|
{
"event":"course.enrollment.completed",
"fired_by_batch_action":false,
"message_id":"wh-20240318-056045-baf44a12-722b-4de1-a631-1a68938be6e9",
"webhook_id":11,
"original_domain":"example-domain.docebosaas.com",
"payload":{
"fired_at":"2024-03-18 09:00:45",
"user_id":13827,
"course_id":146,
"completion_date":"2024-03-18 09:00:44",
"subscribed_by_id":13827,
"status":"completed",
"level":"learner",
"enrollment_date":"2022-04-22 10:21:28",
"enrollment_date_begin_validity":null,
"enrollment_date_end_validity":null,
"extra_data":{
"total_time":21934,
"score":0,
"additional_fields":null,
"date_first_access":"2022-04-22 10:24:19"
}
}
}User enrolled in ILT session (ilt.session.enrollment.created)
Triggers when a user enrolls into an ILT session
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user. |
| ID of the course. |
| ID of the ILT session associated with the course. |
| Name of the session in which the user has been enrolled. |
| The enrollment level of the user. Possible values are:
|
| Date of the enrollment. |
| Start of the validity period for the enrollment (can be |
| End of the validity period (can be |
| ID of the Superadmin or Power User who enrolled the user, or the user ID if the user enrolled by themself. |
| Enrollment status. Possible values are
|
|
|
User enrolled in a course (course.enrollment.created)
Triggers when a user is enrolled in a course
Property | Description |
|---|---|
| ID of the user. |
| Username of the user. |
| ID of the course. |
| Course title. |
| The enrollment level of the user. Possible values are:
|
| Date of the enrollment. |
| Start of the validity period for the enrollment (can be |
| End of the validity period (can be |
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the Superadmin or Power User who enrolled the user, or the user ID if the user enrolled by themself. |
| Enrollment status. Possible values are:
|
| The learning plan enrollment priority attribute. Possible values are: This field is tracked only if the Show the Enrollment attributes option is enabled in the platform's advanced settings menu. |
|
|
User unenrolled from course (course.enrollment.deleted)
Triggers when a learner has unenrolled from a course.
Property | Description |
|---|---|
| ID of the user enrolled. |
| Username of the user. |
| ID of the course to which the user is enrolled. |
| Title of the course to which the user is enrolled. |
| The date and time of the moment the event was fired in UTC. Format:
|
| User level in the course. Possible values are:
|
| The date when the enrollment was recorded, in UTC. Format:
|
| The date when the enrollment validity starts, in UTC. Format:
|
| The date when the enrollment validity ends, in UTC. Format:
|
| ID of the user enrolling the user identified by the |
| Enrollment status. Possible values are:
|
|
|
Enrollment updated (course.enrollment.updatedbyadmin)
Triggers when a Superadmin has updated a course enrollment
Property | Description |
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the Superadmin who updated the enrollment. |
| Username of the Superadmin who updated the enrollment. |
| ID of the course where the enrollment was updated by the Superadmin. |
| Title of the course where the enrollment was updated by the Superadmin. |
| Enrollment updates section. |
| Previous enrollment priority. Possible values are:
|
| New enrollment priority. |
Gamification
User earned a badge (badge.earned)
Triggers when a user has earned a badge
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The badge ID. |
| The user ID. |
| The total score attained |
| The date and time the badge was issued, in UTC. Format:
|
| The type of the event. Possible values are:
|
| The name of the badge |
| The URL of the image of the badge |
| A boolean value indicating if the badge can be shared |
Groups
User assigned to a group (group.user.added)
Triggers when a user is assigned to a group
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The ID of the user assigned to the group |
| The ID of the group to which the user has been assigned |
| The username of the user |
| The name of the group to which the user has been assigned |
{
"webhook_id": 28,
"original_domain": "exampleplatform.exampledomain.com",
"event": "group.user.added",
"fired_by_batch_action": true,
"message_id": "wh-20250328-113419-7ff55e07-cc5c-49ee-9165-533fdb695ea1",
"payload": {
"fired_at": "2025-03-28 11:34:16",
"user_id": 13936,
"group_id": 13887,
"username": "john.doe@exampledomain.com",
"group_name": "Example Group",
"extra_data": null
}
}User removed from a group (group.user.removed)
Triggers when a user is removed from a group
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The ID of the user removed from the group |
| The ID of the group from which the user has been removed |
| The username of the user |
| The name of the group from which the user has been removed |
{
"webhook_id": 28,
"original_domain": "exampleplatform.exampledomain.com",
"event": "group.user.removed",
"fired_by_batch_action": true,
"message_id": "wh-20250328-113430-5d959e8b-ba9d-4e43-881a-4b88ba20e36a",
"payload": {
"fired_at": "2025-03-28 11:34:29",
"user_id": 13936,
"group_id": 13887,
"username": "john.doe@exampledomain.com",
"group_name": "Example Group",
"extra_data": null
}
}ILT sessions
User unenrolled from an ILT session (ilt.session.enrollment.deleted)
Triggers when a user has been unenrolled from an ILT session.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user. |
| ID of the course. |
| ID of the ILT session associated with the course. |
| Name of the session in which the user has been enrolled. |
| The enrollment level of the user. Possible values are:
|
| Date of the enrollment. |
| Start of the validity period for the enrollment (can be |
| End of the validity period (can be |
| ID of the Superadmin or Power User who enrolled the user, or the user ID if the user enrolled by themself. |
| Enrollment status. Possible values are:
|
ILT external calendar event changed (ilt.extcalendar.event.changed)
Information
This webhook is for use by specific Docebo Connect recipes only and should not be used for any other purposes.
ILT external calendar session changed (ilt.extcalendar.session.changed)
Information
This webhook is for use by specific Docebo Connect recipes only and should not be used for any other purposes.
ILT session changed (ilt.session.updated)
Triggers when an ILT session has been changed or updated.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the course associated with the updated ILT session. |
| Code of the course associated with the updated ILT session. |
| ID of the updated ILT session. |
| Code of the updated ILT session. |
| Name of the updated ILT session. |
|
|
ILT session deleted (ilt.session.deleted)
Triggers when an ILT session is deleted.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the course of the deleted ILT session. |
| Code of the course of the deleted ILT session. |
| ID of the deleted ILT session. |
| Code of the deleted ILT session. |
| Name of the deleted ILT session. |
New ILT session created (ilt.session.created)
Triggers when a new ILT session is created.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the course associated with the ILT session. |
| Code of the course associated with the ILT session. |
| ID of the new ILT session. |
| Code of the new ILT session. |
| Name of the new ILT session. |
|
|
New ILT event created (ilt.event.created)
Triggers when a new ILT event is created.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC Format: |
| ID of the ILT event created |
| Name of the ILT event created |
| Name of the ILT course associated with the ILT event |
| ID of the ILT course associated with the ILT event |
| Name of the ILT session where the event was created |
| ID of the ILT session where the event was created |
| The date when the ILT event is scheduled to take place Format: |
| The timezone to which the ILT event dates and times are referred |
| The scheduled start time of the ILT event Format: |
| The scheduled end time of the ILT event Format: |
| The scheduled break start time of the ILT event Format: |
| The scheduled break end time of the ILT event Format: |
| Location name for ILT event with a venue |
| Location country for ILT event with a venue |
| Classroom name for ILT event with a venue |
| Video conference tool configured for the ILT event |
ILT event updated (ilt.event.updated)
Triggers when an ILT event is updated.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC Format: |
| ID of the ILT event |
| Name of the ILT event |
| Name of the ILT course associated with the ILT event |
| ID of the ILT course associated with the ILT event |
| Name of the ILT session where the event was created |
| ID of the ILT session where the event was created |
| The date when the ILT event is scheduled to take place Format: |
| The timezone to which the ILT event dates and times are referred |
| The scheduled start time of the ILT event Format: |
| The scheduled end time of the ILT event Format: |
| The scheduled break start time of the ILT event Format: |
| The scheduled break end time of the ILT event Format: |
| Location name for ILT event with a venue |
| Location country for ILT event with a venue |
| Classroom name for ILT event with a venue |
| Video conference tool configured for the ILT event |
ILT event deleted (ilt.event.deleted)
Triggers when an ILT event is deleted.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC Format: |
| ID of the ILT event |
| Name of the ILT event |
| Name of the ILT course associated with the ILT event |
| ID of the ILT course associated with the ILT event |
| Name of the ILT session where the event was created |
| ID of the ILT session where the event was created |
| The date when the ILT event was scheduled to take place Format: |
| The timezone to which the ILT event dates and times are referred |
| The scheduled start time of the ILT event Format: |
| The scheduled end time of the ILT event Format: |
| The scheduled break start time of the ILT event Format: |
| The scheduled break end time of the ILT event Format: |
| Location name for ILT event with a venue |
| Location country for ILT event with a venue |
| Classroom name for ILT event with a venue |
| Video conference tool configured for the ILT event |
Learning plans
Admin added a course to a learning plan (learningplan.course.added)
Triggers when an admin adds a course to a learning plan
Property | Description |
|---|---|
| ID of the learning plan. |
| ID of the course added to the learning plan. |
| Title of the course added to the learning plan. |
| The date and time of the moment the event was fired in UTC. Format:
|
Admin created a learning plan (learningplan.created)
Triggers when an admin creates a learning plan
Property | Description |
|---|---|
| ID of the learning plan. |
| Title of the learning plan. |
| Code of the learning plan (can be empty or |
| The date of the creation, in UTC. Format:
|
| The date and time of the moment the event was fired in UTC. Format:
|
|
|
Admin deleted a learning plan (learningplan.deleted)
Triggers when an admin deletes a learning plan
Property | Description |
|---|---|
| ID of the learning plan. |
| Title of the learning plan. |
| Code of the learning plan (it can be empty or |
| The date of the deletion, in UTC. Format:
|
| The date and time of the moment the event was fired, in UTC. Format:
|
Admin removed a course from a learning plan (learningplan.course.removed)
Triggers when an admin removes a course from a learning plan
Property | Description |
|---|---|
| ID of the learning plan. |
| ID of the course removed from the learning plan. |
| The date and time of the moment the event was fired in UTC. Format:
|
Admin updated a learning plan (learningplan.updated)
Triggers when an admin updates a learning plan
Property | Description |
|---|---|
| ID of the learning plan. |
| Title of the learning plan. |
| Code of the learning plan (it can be empty or |
| The date of the update in UTC. Format:
|
| The date and time of the moment the event was fired in UTC. Format:
|
|
|
Learner completed learning plan (learningplan.enrollment.completed)
Triggers when a learner completed a learning plan
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the enrolled user. |
| Username of the enrolled user. |
| ID of the learning plan. |
| Learning plan title. |
| ID of the course triggering the learning plan completion. |
| Title of the course triggering the learning plan completion. |
| The learning plan enrollment priority attribute. Possible values are:
|
| If the completion is not forced via API, the date when the learner completed the last course of the learning plan.
|
| Identifies whether the completion was performed manually by an administrator or achieved by the learner through completing the learning plan. |
User enrollment in a learning plan has been updated (learningplan.enrollment.updated)
Triggers when the user enrollment in a learning plan has been updated.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user whose enrollment was updated. |
| Username of the user whose enrollment was updated. |
| ID of the learning plan. |
| Learning plan title. |
| Enrollment updates section. |
| Previous enrollment priority. Possible values are:
|
| New enrollment priority. |
| The learning plan enrollment priority attribute. Possible values are:
|
|
|
Learning plan enrollment created (learningplan.enrollment.created)
Triggers when a new learning plan enrollment is created.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the enrolled user. |
| Username of the enrolled user. |
| ID of the learning plan. |
| Learning plan title. |
| Learning plan code. |
| The date of the enrollment Format:
|
| ID of the Superadmin or Power User who enrolled the user, or the user ID if the user enrolled by themself. |
| The start of the validity period for the enrollment (can be |
| The end of the validity period (can be |
| The learning plan enrollment priority attribute. Possible values are:
|
|
|
Learning plan enrollment deleted (learningplan.enrollment.deleted)
Triggers when an enrollment in a learning plan is deleted.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the enrolled user. |
| Username of the enrolled user |
| The ID of the learning plan |
Observation checklists
Checklist Approval Step Submitted (checklist.approval.step.submitted)
Triggers when an observation checklist approval step is submitted.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format: |
| The ID of the checklist |
| The name of the checklist |
| The type of the schedule Possible values:
|
| The ID of the assignment |
| The starting date of the assignment in UTC. Format: This value can be |
| The ending date of the assignment in UTC. Format: This value can be |
| The ID of the evaluator |
| The username of the evaluator |
| The type of the evaluation Possible values:
|
| The ID of the user being evaluated |
| The username of the user being evaluated |
| The score of the evaluation This value can be |
| The status of the evaluation Possible values:
|
| The approval type Possible values:
This value can be |
| The ID of the approver This value can be |
| The username of the approver This value can be |
| The status of the approval Possible values:
|
| The completion date in UTC. Format: This value can be |
{
"event": "checklist.approval.step.submitted",
"fired_by_batch_action": false,
"message_id": "wh-1fb64100-7e52-11ee-9ab7-f15508adc694",
"payload": {
"fired_at": "2023-11-08 16:16:06",
"checklist_id": 2,
"checklist_name": "Test1",
"schedule_type": "course",
"assignment_id": 1,
"assignment_start_date": "2023-11-08 16:11:42",
"assignment_end_date": null,
"evaluator_id": 13436,
"evaluator_username": "helen.harris",
"evaluation_type": "self",
"evaluated_id": 13436,
"evaluated_username": "test",
"evaluation_score": null,
"evaluation_status": "completed",
"approval_type": "custom_user",
"approver_id": 13226,
"approver_username": "helen.harris",
"approval_status": "approved",
"completion_date": "2023-11-08 16:16:06"
}
}Checklist Observation Step Submitted (checklist.observation.step.submitted)
Triggers when an observation checklist observation step is submitted.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format: |
| The ID of the checklist |
| The name of the checklist |
| The type of the schedule Possible values:
|
| The ID of the assignment |
| The starting date of the assignment in UTC. Format: This value can be |
| The ending date of the assignment in UTC. Format: This value can be |
| The ID of the evaluator |
| The username of the evaluator |
| The type of the evaluation Possible values:
|
| The ID of the user being evaluated |
| The username of the user being evaluated |
| The score of the evaluation This value can be |
| The status of the evaluation Possible values:
|
| The approval type Possible values:
This value can be |
| The ID of the approver This value can be |
| The username of the approver This value can be |
| The completion date in UTC. Format: This value can be |
{
"event": "checklist.observation.step.submitted",
"fired_by_batch_action": false,
"message_id": "wh-1fb64100-7e52-11ee-9ab7-f15508adc694",
"payload": {
"fired_at": "2023-11-08 16:16:06",
"checklist_id": 2,
"checklist_name": "Test2",
"schedule_type": "anytime",
"assignment_id": 2,
"assignment_start_date": "2023-11-08 16:11:42",
"assignment_end_date": null,
"evaluator_id": 13436,
"evaluator_username": "jeff.jones",
"evaluation_type": "custom_user",
"evaluated_id": 13436,
"evaluated_username": "test",
"evaluation_score": null,
"evaluation_status": "completed",
"approval_type": null,
"approver_id": null,
"approver_username": null,
"completion_date": "2023-11-08 16:16:06"
}
}Checklist Observation to Complete (checklist.observation.to.complete)
Triggers when an observation checklist has become available for completion.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format: |
| The ID of the checklist |
| The name of the checklist |
| The type of the schedule Possible values:
|
| The ID of the assignment |
| The starting date of the assignment in UTC. Format: This value can be |
| The ending date of the assignment in UTC. Format: This value can be |
| The ID of the evaluator |
| The username of the evaluator |
| The type of the evaluation Possible values:
|
| The ID of the user being evaluated |
| The username of the user being evaluated |
| The approval type Possible values:
This value can be |
| The ID of the approver This value can be |
| The username of the approver This value can be |
{
"event": "checklist.observation.to.complete",
"fired_by_batch_action": false,
"message_id": "wh-1fb64100-7e52-11ee-9ab7-f15508adc694",
"payload": {
"fired_at": "2023-11-08 16:16:06",
"checklist_id": 2,
"checklist_name": "Test2",
"schedule_type": "anytime",
"assignment_id": 2,
"assignment_start_date": "2023-11-08 16:11:42",
"assignment_end_date": null,
"evaluator_id": 13436,
"evaluator_username": "brian.smith",
"evaluation_type": "custom_user",
"evaluated_id": 13436,
"evaluated_username": "test",
"approval_type": null,
"approver_id": null,
"approver_username": null
}
}Skills
Learner completed content with assigned skills (skill.object.completed)
Triggers when a learner has completed content with skills assigned to it.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user. |
| ID of the content. |
| Type of content.
|
| Title of the content. |
| Skills associated with the content.
|
Training materials
An assignment has been submitted (lo.assignment.submission)
Triggers when an assignment has been submitted.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the assignment submission created by the learner. |
| The date and time when the submission was generated in UTC Format:
|
| ID of the learner submitting the assignment. |
| ID of the assignment training material. |
| Title of the assignment training material. |
| Title for the submission, as defined by the learner. |
| Comments added by the learner along with the submission. |
| ID of the course where the assignment training material was created. |
| One or more uploaded files.
|
An assignment tracking has been reset (lo.assignment.submission.reset)
Triggers when an assingment tracking has been reset.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the assignment submission created by the learner. |
| ID of the learner submitting the assignment. |
| ID of the assignment training material. |
| Name of the assignment training material. |
| Title for the assignment submission as given by the learner. |
| Comments added by the learner along with the submission. |
| The date when the assignment was submitted in UTC Format:
|
| ID of the course where the assignment training material was created. |
| One or more uploaded files.
|
Assignment has been evaluated (lo.assignment.evaluation)
Triggers when an assignment has been evaluated.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The ID of the instructor who evaluated this assignment. |
| ID of the assignment submission evaluated by the instructor |
| ID of the learner in evaluation by the instructor |
| ID of the assignment training material |
| The name of the assignment training material. |
| ID of the course where the assignment training material was created |
| The score given by the instructor.
|
| The evaluation comments written by the instructor |
| A boolean value sets whether the learner is allowed to submit again the assignment when failed. The default value is |
| The evaluation status. Possible values are:
|
| A hashed filename of the instructor’s evaluation report. |
| The original filename, as uploaded by the instructor |
Training material has been created in a course (course.trainingmaterial.created)
Triggers when new training material has been created in a course.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user who created the training material. |
| Username of the user who created the training material. |
| ID of the course where the training material was created. |
| Title of the course where the training material was created. |
| Title of the newly created training material. |
| Type of training material. Possible values are:
|
| ID of the newly created training material. |
Training material has been updated in a course (course.trainingmaterial.updated)
Triggers when training material has been updated in a course.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user who updated the training material. |
| Username of the user who updated the training material. |
| ID of the course where the training material was updated. |
| Title of the course where the training material was updated. |
| Title of the updated training material. |
| Type of training material. Possible values are:
|
| ID of the updated training material. |
| Number of users who played the training material. |
Training material has been deleted from a course (course.trainingmaterial.deleted)
Triggers when a training material has been deleted from a course.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| The ID of the user who deleted the training material. |
| The username of the user who deleted the training material. |
| The ID of the course from where the training material was deleted. |
| The title of the course from where the training material was deleted. |
| The title of the deleted training material. |
| The type of training material. Possible values are:
|
| ID of the deleted created training material. |
Training material status has changed (trainingmaterial.playstatus.updated)
Triggers when the status of a training material has changed.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user whose action changed the status of the training material. |
| Username of the user whose action changed the status of the training material. |
| ID of the course where the status of the training material changed. |
| Title of the course where the status of the training material changed. |
| Type of course to which the training material with changed status. Possible values are:
|
| Title of the training material with changed status. |
| The type of training material. Possible values are:
|
| ID of the training material with changed status. |
| New status of the training material. Possible values are:
|
Training material has been assigned to a course from the Central repository (tmrepo.course.trainingmaterial.added)
Triggers when training material in the Central repository has been assigned to a course.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user who assigned the training material to the course from the Central repository. |
| Username of the user who assigned the training material to the course from the Central repository. |
| ID of the course to which the training material was assigned from the Central repository. |
| Title of the course to which the training material was assigned from the Central repository. |
| The type of course to which the training material was assigned from the Central repository. Possible values are:
|
| Title of the training material assigned to the course from the Central repository. |
| The type of training material. Possible values are:
|
| ID of the training material assigned to the course from the Central repository. |
| Version ID of the training material assigned to the course from the Central repository. |
| Version name of the training material coming from the Central repository that was removed from the course. |
Training material coming from the Central repository has been removed from a course (tmrepo.course.trainingmaterial.removed)
Triggers when training material in the Central repository has been removed from a course.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user who removed the training material coming from the Central repository from the course. |
| Username of the user who removed the training material coming from the Central repository from the course. |
| ID of the course from which the training material coming from the Central repository was removed. |
| Title of the course from which the training material coming from the Central repository was removed. |
| Type of course from which the training material coming from the Central repository was removed. Possible values are:
|
| Title of the training material coming from the Central repository that was removed from the course. |
| Type of training material. Possible values are:
|
| ID of the training material coming from the Central repository that was removed from the course. |
| Version ID of the training material coming from the Central repository that was removed from the course. |
| Version name of the training material assigned to the course from the Central repository. |
| Number of users who played the training material. |
Training material coming from the Central repository has been updated in a course (tmrepo.course.trainingmaterial.updated)
Triggers when training material in the Central repository has been updated in a course.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user who removed the training material coming from the Central repository from the course. |
| Username of the user who removed the training material coming from the Central repository from the course. |
| Title of the training material coming from the Central repository that was removed from the course. |
| Type of training material. Possible values are:
|
| ID of the training material coming from the Central repository that was removed from the course. |
| Number of assigned courses |
| Number of versions |
| Number of users who played the training material. |
Transactions
Transaction created (ecommerce.transaction.created)
Triggers when a transaction is created
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| Transaction ID, automatically assigned by the platform. |
| ID of the user who executed the transaction. |
| The transaction date and time in UTC. Format:
|
| Payment type used to settle the transaction. |
| Transaction ID on the payment gateway side (not always present). |
| Payment status. Possible values are:
|
| The total amount paid for the transaction. |
| Currency used to settle the transaction. |
Transaction deleted (ecommerce.transaction.deleted)
Triggers when a transaction is deleted.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| Transaction ID, automatically assigned by the platform. |
| ID of the user who executed the transaction. |
| The transaction date and time in UTC. Format:
|
| Payment type used to settle the transaction. |
| Transaction ID on the payment gateway side (not always present). |
| Payment status, always set to |
| Total amount paid for the transaction. |
Transaction updated (ecommerce.transaction.updated)
Triggers when a transaction is updated.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| Transaction ID, automatically assigned by the platform. |
| ID of the user who executed the transaction. |
| The transaction date and time in UTC. Format:
|
| Payment type used to settle the transaction. |
| Transaction ID on the payment gateway side (not always present). |
| Payment status, always set to |
| The total amount paid for the transaction. |
Users
Registration request sent (user.selfregistrationrequest.sent)
Triggers when a user requests to self-register in the platform.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user requesting to self-register in the platform. |
| Username of the user requesting to self-register in the platform. |
| Level of the user requesting to self-register. |
| Email of the user requesting to self-register. |
| First name of the user requesting to self-register. |
| Last name of the user requesting to self-register. |
Registration confirmed (user.selfregistrationrequest.approved)
Triggers when a user’s request to self-register in the platform is approved.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user requesting to self-register. |
| Username of the user requesting to self-register. |
| Level of the user requesting to self-register. |
| Email of the user requesting to self-register. |
| The timestamp when the Superadmin approves the user's self-registration. Format:
|
| First name of the user requesting to self-register. |
| Last name of the user requesting to self-register. |
User has been created (user.created)
Triggers when a user has been created.
Property | Description |
|---|---|
| ID for the new user. |
| Username of the new user |
| Email for the newly created user (can be
|
| The date of creation for the user in UTC. Format:
|
| The date of expiration for the user in UTC. Format:
|
| Level of the user created. Possible values are:
|
| The first name of the user (can be |
| The last name of the user (can be |
| The date and time of the moment the event was fired in UTC. Format:
|
| Identity Provider (IdP) with which the newly created user has been provisioned. Possible values are:
|
|
|
User has been deactivated (user.deactivated)
Triggers when a user has been deactivated.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| Deactivated user ID. |
| Username of the user. |
| Email of the deactivated user (can be
|
| The date of the deactivation of the user in UTC. Format:
|
| The date of expiration for the user in UTC. Format:
|
| Level of the deactivated user. |
| The first name of the user (can be
|
| The last name of the user (can be
|
|
|
User has been deleted (user.deleted)
Triggers when a user has been deleted.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the deleted user. |
| Username of the deleted user. |
| The date of deletion of the user in UTC. Format:
|
User has been modified (user.updated)
Triggers when a user has been modified.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the updated user. |
| Username of the updated user. |
| Email of the updated user (can be |
| The date of the update in UTC Format:
|
| The date of expiration for the user in UTC Format:
|
| Level of the updated user. |
| First name of the user (can be |
| Last name of the user (can be |
|
|
User has been re-activated (user.reactivated)
Triggers when a user has been re-activated.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the reactivated user. |
| Username of the reactivated user. |
| Email of the reactivated user (can be |
| The date when the user is reactivated in UTC. Format:
|
| The date of expiration for the user in UTC. Format:
|
| Level of the reactivated user. |
| First name of the reactivated user (can be |
| Last name of the reactivated user (can be |
User registered into the platform (user.selfregistered)
Triggers when a user has self-registered into the platform.
Property | Description |
|---|---|
| The date and time of the moment the event was fired in UTC. Format:
|
| ID of the user. |
| Username of the user. |
| Email of the user (can be |
| The date of creation for the user in UTC. Format:
|
| The level of the user. Possible values are:
|
| First name of the user (can be |
| Last name of the user (can be |
.png?sv=2022-11-02&spr=https&st=2026-03-28T17%3A11%3A41Z&se=2026-03-28T18%3A15%3A41Z&sr=c&sp=r&sig=s9Na99LqKHkXjLomSaRwiACTcvtiqB%2FPmST0Bk7oLkk%3D)