> For the complete documentation index, see [llms.txt](https://docs.mining-sentry.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mining-sentry.com/guides/webhook-integration.md).

# Webhook Integration

Send Sentry data to your service with our webhook integration. To use the webhook integration go to the Integrations page in the application.

### Integrations

To start navigate to the Integrations Tab in Mining Sentry

<figure><img src="/files/dYo1Vqr8nKywfjkaLLGH" alt=""><figcaption></figcaption></figure>

### Add Your Service Details

Click on the Create button and add your service details. You will now receive data for the events that you selected such as inspection created, inspection resolved.

<figure><img src="/files/FTfQ4DKOkQE1WkojLIwc" alt=""><figcaption></figcaption></figure>

### Example Payload

```
{
  "inspectionId": "b7c1a1b3-9d9c-4647-b6a2-197eaf671e36",
  "workspaceId": "4266af87-e607-444b-a5c1-e0fb348ea4f6",
  "inspectionName": "Long Equipment Inspection",
  "isEquipment": true,
  "inspectorFirstName": "Robert",
  "inspectorLastName": "Smith",
  "notes": null,
  "createdAt": "2022-11-17T21:03:31.9796939Z",
  "zoneName": "Haul truck",
  "hours": null,
  "mileage": null,
  "gallonsFuel": null,
  "isFailed": false,
  "isResolved": false,
  "answers": [
    {
      "question": "Wipers",
      "answer": "Ok",
      "isFailure": false,
      "imagePath": null,
      "notes": "",
      "resolvedAt": null,
      "resolvingMemberFirstName": null,
      "resolvingMemberLastName": null,
      "resolutionDetails": null,
      "resolutionImagePath": null
    }
  ]
}
```
