Configuring webhooks

Last updated: 2026-04-22

Webhooks let you connect TRUST+ to other tools your company uses — a CRM, a project management system, a custom workflow — by sending an HTTP POST to a URL you specify whenever something happens in TRUST+.

You configure webhooks per partner, and you choose exactly which events you want to receive.

Where to find webhook settings

  1. Sign in to the Partner Console.
  2. Go to your partner detail page (click Partners and open your company).
  3. Click the Settings tab.
  4. Scroll to Webhook Settings.

Setting up a webhook

  1. Enter your endpoint URL — this is the HTTPS URL on your server that will receive the webhook payloads.
  2. Select the events you want to subscribe to (see the list below).
  3. Save the configuration.

TRUST+ will start sending POST requests to your URL immediately for new events.

Available events

EventWhen it fires
project.createdA new project is created
project.updatedA project’s details are changed
project.deletedA project is deleted
project.restoredA deleted project is restored
media.addedPhotos or videos are added to a project
recording.addedAn action-cam recording is added
recording.reassignedA recording is moved to a different visit
visit.createdA new service visit is created
visit.updatedA visit’s details change
visit.completedA visit is marked as completed
visit.deletedA visit is deleted
visit.media.addedMedia is added to a specific visit
visit.recording.addedAn action-cam recording is added to a visit
visit.media.availableA media file is confirmed present in S3 and ready to download

The visit.media.available event is particularly useful if you need to pull media into an external system — it fires only after the file is fully uploaded and accessible, not just when the metadata is recorded.

Webhook payload format

Each webhook is a JSON POST with a consistent structure:

{
  "event": "visit.completed",
  "partnerId": "...",
  "projectId": "...",
  "visitId": "...",
  "timestamp": "2026-04-22T14:30:00Z"
}

The exact fields vary by event type. You can view example payloads for each event in the Partner Console — click the event name in the webhook settings screen to see the schema.

Request headers

Every webhook request includes:

You can use the event header to route incoming requests if you’re using a single endpoint for multiple event types.

Security

Your endpoint should use HTTPS. We recommend verifying the X-TrustPlus-Event header and validating that requests come from our IP range if your system supports it. If you need a signing secret for additional verification, contact support.

Troubleshooting

If webhooks aren’t arriving:

If you need help diagnosing delivery issues, contact support with your partner ID and the event type you’re testing.