> ## Documentation Index
> Fetch the complete documentation index at: https://ai-recruiter.micro1.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Webhooks allow you to receive real-time notifications when specific events occur in your micro1 account. This enables you to automatically trigger actions in your systems based on these events.

## Webhook Structure

All webhook payloads follow this general structure:

```json theme={null}
{
  "event": "event.type",
  "data": {
    // Event-specific data
  }
}
```

## Common Fields

| Field   | Type   | Description                                            |
| ------- | ------ | ------------------------------------------------------ |
| `event` | string | The type of event that triggered the webhook           |
| `data`  | object | Event-specific payload containing relevant information |

## Available Events

Here are the events you can subscribe to:

### Interview Events

* `interview_report.created` - Triggered when a new interview report is created
* `interview_recording.completed` - Triggered when an interview recording is completed
* `interview_webcam_recording.completed` - Triggered when an interview webcam recording is completed
* `proctoring_score.completed` - Triggered when a proctoring score is calculated
* `applicant.created` - Triggered when a new applicant is created
* `applicant.updated` - Triggered when an applicant is updated
* `applicant.invited` - Triggered when an applicant is invited
* `interview.started` - Triggered when an interview is started
* `applicant.completed` - Triggered when an applicant's resume score is generated
* `interview.completed` - Triggered when an interview is completed (same as `interview_recording.completed`)
