# Webhook event payloads

> Webhook event payloads - Admins can configure notification channels to subscribe to some or all
> DataRobot event notifications, delivered by webhooks. Includes code samples.

This Markdown file sits beside the HTML page at the same path (with a `.md` suffix). It summarizes the topic and lists links for tools and LLM context.

Companion generated at `2026-04-24T16:03:56.647229+00:00` (UTC).

## Primary page

- [Webhook event payloads](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html): Full documentation for this topic (HTML).

## Sections on this page

- [Project events](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html#project-events): In-page section heading.
- [Example: Project deleted event](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html#example-project-deleted-event): In-page section heading.
- [Example: Autocomplete finished event](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html#example-autocomplete-finished-event): In-page section heading.
- [Mongo fields: project events](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html#mongo-fields-project-events): In-page section heading.
- [Dataset events](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html#dataset-events): In-page section heading.
- [Example: Dataset shared event](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html#example-dataset-shared-event): In-page section heading.
- [Mongo fields: dataset events](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html#mongo-fields-dataset-events): In-page section heading.
- [Model deployment events](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html#model-deployment-events): In-page section heading.
- [Example: Deployment creation event](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html#example-deployment-creation-event): In-page section heading.
- [Mongo fields: deployment events](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-events.html#mongo-fields-deployment-events): In-page section heading.

## Related documentation

- [Account management](https://docs.datarobot.com/en/docs/platform/index.html): Linked from this page.
- [Administrator's guide](https://docs.datarobot.com/en/docs/platform/admin/index.html): Linked from this page.
- [Notification service](https://docs.datarobot.com/en/docs/platform/admin/webhooks/index.html): Linked from this page.
- [notification channel](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-notify.html#create-a-channel): Linked from this page.

## Documentation content

# Webhook event payloads

Events generate notifications delivered by webhooks. When you configure a [notification channel](https://docs.datarobot.com/en/docs/platform/admin/webhooks/web-notify.html#create-a-channel), you can choose which events you want to receive notifications for. Each event relates to a unique action within DataRobot. Choose to opt into all events for a configuration, or subscribe to specific events that are useful for you.

This page details the event payload configurations available for DataRobot webhooks. Each event category includes an example.

Before proceeding, review the [considerations](https://docs.datarobot.com/en/docs/platform/admin/webhooks/index.html#feature-considerations).

### Project events

There are 4 available project event types:

| Action | Payload format |
| --- | --- |
| Project created | project.created |
| Project deleted | project.deleted |
| Project shared | project.shared |
| Autopilot completed | autopilot.complete |

#### Example: Project deleted event

```
```json
{
    "event": {
        "deleted_by": "123a456b7c8e9f",
        "deletion_time": 1581504952,
        "entity_id": "123a456b7c8e9f",
        "uid": "<User_ID>"
    },
    "event_type": "project.deleted",
    "project": {
        "active": 1,
        "default_dataset_id": "123a456b7c8e9f",
        "original_name": "https://s3.amazonaws.com/datarobot_public_datasets/DR_Demo_Store_Sales_Forecast_Train.xlsx",
        "project_id": "<project_ID>",
        "project_name": "DR_Demo_Store_Sales_Forecast_Train.xlsx",
        "stage": "modeling:"
    },
    "timestamp": 1581504953
}
```
```

#### Example: Autocomplete finished event

```
```json
{
    "event": {
        "dataset_id": "123a456b7c8e9f",
        "entity_id": "123a456b7c8e9f",
        "uid": "<User_ID>"
    },
    "event_type": "autopilot.complete",
    "project": {
        "active": 1,
        "default_dataset_id": "123a456b7c8e9f",
        "original_name": "advanced_options.csv",
        "project_id": "<project_ID>",
        "project_name": "test-tvh-no-holdout-f2c6607d-544d-4e94-a488-c282b6aaa192",
        "stage": "modeling:"
    },
    "timestamp": 1581507975
}
```
```

### Mongo fields: project events

The following tables details all possible fields that can be included in project event payloads.

| Field in Mongo | Required | Description |
| --- | --- | --- |
| uid |  | N/A |
| created |  | N/A |
| active | ✔ | Indicates whether the project is active. |
| default_dataset_id | ✔ | Indicates the origin of the dataset in the AI Catalog. |
| holdout_unlocked |  | N/A |
| originalName | ✔ | Contains the name of the file when it was uploaded to DataRobot. |
| project_name | ✔ | Identifies the project name. |
| stage | ✔ | Indicates the stage the project was in when the action was taken. |
| is_deleted |  | N/A |
| deletion_time | ✔ | Indicates the deletion time (useful for troubleshooting delayed notifications). |
| deleted_by | ✔ | Indicates the user who deleted the project. |

### Dataset events

There are 3 available dataset event types:

| Action | Payload format |
| --- | --- |
| Dataset created | dataset.created |
| Dataset deleted | dataset.deleted |
| Dataset shared | dataset.shared |

#### Example: Dataset shared event

```
```json
{
    "dataset": {
        "catalog_type": "non_materialized_dataset",
        "dataset_id": "123a456b7c8e9f",
        "latest_catalog_version_id": "123a456b7c8e9f",
        "original_name": "amazon_de_reviews_small_80.csv",
        "version": 1
    },
    "event": {
        "entity_id": "123a456b7c8e9f",
        "shared_uids": [
            "<Shared_user_ID>",
            "<Shared_user_ID>",
            "<Shared_user_ID>"
        ],
        "uid": "<User_ID>"
    },
    "event_type": "dataset.shared",
    "timestamp": 1581508736
}
```
```

### Mongo fields: dataset events

The following tables details all possible fields that can be included in dataset event payloads.

| Field in Mongo | Required | Description |
| --- | --- | --- |
| uid |  | N/A |
| created |  | N/A |
| latest_catalog_version_id | ✔ | Indicates the version of the dataset used. |
| originalName | ✔ | Contains the name of the file when it was uploaded to DataRobot. |
| last_modified |  | N/A |
| last_modified_uid |  | N/A |
| catalog_type | ✔ | Determines the project type based on AI Catalog information. |
| version | ✔ | Indicates the version of the dataset used. |
| is_deleted |  | N/A |
| deletion_time | ✔ | Indicates the deletion time (useful for troubleshooting delayed notifications). |
| deleted_by | ✔ | Indicates the user who deleted the project. |

### Model deployment events

There are 10 available deployment event types:

| Action | Payload format |
| --- | --- |
| Model Deployment Shared | model_deployments.deployment_sharing |
| Model Deployment Replaced | model_deployments.model_replacement |
| Model Deployment Created | model_deployments.deployment_creation |
| Model Deployment Deleted | model_deployments.deployment_deletion |
| Deployment Service Health Change: Green to Yellow | model_deployments.service_health_yellow_from_green |
| Deployment Service Health Change: Red | model_deployments.service_health_red |
| Deployment Data Drift Change: Green to Yellow | model_deployments.data_drift_yellow_from_green |
| Deployment Data Drift Change: Red | model_deployments.data_drift_red |
| Deployment Accuracy Health Change: Green to Yellow | model_deployments.accuracy_yellow_from_green |
| Deployment Accuracy Health Change: Red | model_deployments.accuracy_red |

#### Example: Deployment creation event

```
```json
{
    "event": {
        "entity_id": "123a456b7c8e9f",
        "model_id": "123a456b7c8e9f",
        "performer_uid": "<Performer_ID>",
        "status": "active"
    },
    "event_type": "model_deployments.deployment_creation",
    “deployment": {
        "deployment_id": "123a456b7c8e9f",
        "model_id": "123a456b7c8e9f",
        "model_package_id": "123a456b7c8e9f",
        "project_id": "<project_ID>",
        "status": "active",
        "type": "dedicated",
        "user_id": "<User_ID>"
    },
    "timestamp": 1581505115
}
```
```

### Mongo fields: deployment events

The following tables details all possible fields that can be included in deployment event payloads.

| Field in mongo | Required | Description |
| --- | --- | --- |
| created_at |  | N/A |
| deployed |  | N/A |
| description |  | N/A |
| export_target |  | N/A |
| instance_id |  | N/A |
| label |  | N/A |
| model_id | ✔ | N/A |
| organization_id |  | N/A |
| project_id | ✔ | N/A |
| service_id |  | N/A |
| updated_at |  | N/A |
| user_id | ✔ | N/A |
| deleted |  | N/A |
