---
title: How Do I See Logs For My Submitted Jobs?
description: How do I see logs for my submitted jobs?
---

[Skip to content](https://support.loomanalytics.com/how-do-i-see-logs-for-my-submitted-jobs#main-content)

English

Show submenu for translations

![Loom\_Analytics\_Logo\_Transparent.png\]](https://support.loomanalytics.com/hs-fs/hubfs/Loom_Analytics_Logo_Transparent.png?height=40&name=Loom_Analytics_Logo_Transparent.png)

Open main navigation

Close main navigation

- English
  
  Show submenu for translations
- Loom Analytics

 Loom Analytics

 Let's Get Started. What Can I Help You With?

- There are no suggestions because the search field is empty.

1. [Loom Analytics Knowledge Base](https://support.loomanalytics.com/?hsLang=en)
2. [Loom Analytics Developer Documentation](https://support.loomanalytics.com/loom-analytics-developer-documentation?hsLang=en)
3. [Webhook](https://support.loomanalytics.com/loom-analytics-developer-documentation?hsLang=en#webhook)

# How Do I See Logs For My Submitted Jobs?

## This article summarizes how to monitor Webhook logs in Loom Analytics

**Description:** The Webhook Logs page provides a comprehensive view of all Webhook events triggered by your account. This interface allows for you to monitor Webhook delivery success rates, response times, and troubleshoot any failed Webhook attempts. All Webhook activity is permanently stored and accessible for review.

#### Accessing Webhook Logs:

1. Log in to your Loom Analytics account
2. Click on the gear icon on the **top-right** corner
3. Navigate to **Integrations**
4. Click on **Webhook Logs**

#### **![](https://support.loomanalytics.com/hs-fs/hubfs/image-png-Jan-23-2026-09-18-44-5483-PM.png?width=670&height=295&name=image-png-Jan-23-2026-09-18-44-5483-PM.png)**

#### **Dashboard Overview**

At the top of the Webhook Logs page, you'll see key metrics:

- **Total**: Total number of Webhook events recorded
- **Success**: Number of successful Webhook deliveries (HTTP 200)
- **Failed**: Number of failed Webhook attempts (HTTP 503 or other errors)
- **Rate**: Success rate percentage (e.g., 97.73%)
- **Avg. Time**: Average response time from your Webhook endpoint (e.g., 73 ms)

These metrics provide an at-a-glance view of your Webhook health and performance.

#### **Filtering Webhook Logs:**

#### **Status Filter**

Filter logs by delivery status:

- **All**: Shows all Webhook events, regardless of status
- **Success**: Shows only successful deliveries (HTTP 200)
- **Failed**: Shows only failed Webhook attempts (HTTP 503)

#### **Date Range Filter**

View Webhook logs from different time periods:

- **Last 24 Hours**: View Webhooks from the past day
- **Last 7 Days**: View Webhooks from the past week (default)
- **Last 30 Days**: View Webhooks from the past month
- **Last 90 Days**: View Webhooks from the past quarter

#### **Search by Job ID**

Use the search field to find Webhooks for a specific job:

1. Enter the Job ID in the "**Search Job ID**" field
2. The results will filter to show only Webhook events for that job

#### **Understanding Log Entries**

Each Webhook log entry displays the following information:

| Column | Description |
| --- | --- |
| **Job ID** | The unique identifier for the job that triggered the Webhook |
| **Event Type** | The type of event that occurred (e.g., job.completed; job.failed) |
| **Status** | HTTP status code returned by your Webhook endpoint |
| **Response Time** | How long your endpoint took to respond (e.g., 93 ms; 109 ms) |
| **Timestamp** | Date and time when the Webhook was sent |

#### **Status Codes**

| Status Code | Badge Color | Meaning |
| --- | --- | --- |
| **200** | Green | Success - Your Webhook endpoint received and acknowledged the request |
| **503** | Red | Failed - Your Webhook endpoint was unavailable or returned an error |

#### **Viewing Webhook Details**

To view detailed information about a specific Webhook event:

1. Click the dropdown arrow (▼) next to any Job ID
2. The expanded view shows: 
     - **Webhook URL**: Your configured Webhook endpoint URL
     - **Response Body**: The complete JSON payload that was sent to your endpoint

```
Sample Response Body{    "event": "job.completed",    "status": "completed",    "job_name": "Postman_OpenAPI_0122",    "timestamp": 1769194750,    "completed_at": "2026-01-23 18:59:06",    "error_message": null,    "job_reference_id": "S3Ol3oform6973c4b108f18"}
```

#### **Refreshing Webhook Logs**

The Webhook Logs page does not auto-refresh. To see the latest Webhook events:

1. Click the refresh icon in the top-right corner
2. The page will reload with updated Webhook data

**Note:** If you have submitted multiple jobs (e.g., 100 jobs), you may need to refresh several times, as jobs are processed in batches. Webhooks are triggered as each job completes, so new log entries will appear gradually.

#### **Pagination**

Webhook logs are displayed in pages for better performance:

- **50 Entries/Page**: Each page shows up to 50 Webhook log entries
- Use pagination controls at the bottom to navigate between pages
- Filters and search apply across all pages

#### **Data Retention**

**Webhook Logs are stored permanently** with no retention limit. All Webhook events remain accessible indefinitely for compliance, auditing, and troubleshooting purposes.

#### **Troubleshooting with Webhook Logs**

#### **Identifying Failed Webhooks**

1. Use the **Status** filter and select "Failed"
2. Review failed entries to identify patterns (e.g., specific time periods; types of jobs)
3. Expand failed entries to see the Webhook URL and payload
4. Check if your server was down or experiencing issues at the timestamp shown

#### **Monitoring Response Times**

- High response times (\>1,000 ms) may indicate performance issues with your Webhook endpoint
- The **Avg. Time** metric helps you track overall endpoint performance
- Individual log entries show per-Webhook response times

#### **Verifying Webhook Delivery**

1. Use the **Search Job ID** field to find Webhooks for a specific job
2. Verify that a Webhook was sent when expected
3. Check the status code to confirm successful delivery
4. Expand the entry to review the exact payload sent

#### **Common Issues**

**Webhook Shows Status 503 (Failed)**

**Possible Causes:**

- Your Webhook endpoint was unreachable at the time
- Your server returned an error (5xx status code)
- Network connectivity issues between Loom Analytics and your server
- Your endpoint took too long to respond (timeout)

**Solution:**

- Check your server logs at the timestamp shown in the Webhook log
- Verify your Webhook URL is correct in the Webhooks configuration
- Ensure your endpoint returns HTTP 200 within a reasonable timeframe
- Test your Webhook using the "Test Webhook" button in Webhooks settings

**Issue: No Webhook Logs Appearing for Submitted Jobs**

**Possible Causes:**

- Webhook is not configured or not active
- Jobs were submitted before Webhook was configured
- You're looking at the wrong date range

**Solution:**

- Go to **Integrations \> Webhooks** and verify your Webhook status is "Active"
- Webhooks only trigger for jobs submitted after Webhook configuration
- Adjust the Date Range filter to expand your search period
- Click the refresh icon to ensure you're viewing the latest data

Learn more about how Loom Analytics signs and secures Webhook requests [here](https://support.loomanalytics.com/webhook-security?hsLang=en).

- [Loom Analytics Web](https://support.loomanalytics.com/loom-analytics-web?hsLang=en#main-content)

    - [Introduction](https://support.loomanalytics.com/loom-analytics-web?hsLang=en#introduction)
    - [Getting Started](https://support.loomanalytics.com/loom-analytics-web?hsLang=en#getting-started)
    - [Capture Live](https://support.loomanalytics.com/loom-analytics-web?hsLang=en#capture-live)
    - [Processing Transcripts](https://support.loomanalytics.com/loom-analytics-web?hsLang=en#processing-transcripts)
- [Loom Analytics Desktop](https://support.loomanalytics.com/loom-analytics-desktop?hsLang=en#main-content)

    - [Getting Started](https://support.loomanalytics.com/loom-analytics-desktop?hsLang=en#getting-started)
    - [Live Recording](https://support.loomanalytics.com/loom-analytics-desktop?hsLang=en#live-recording)
    - [Uploading Pre-Recorded Audio](https://support.loomanalytics.com/loom-analytics-desktop?hsLang=en#uploading-pre-recorded-audio)
    - [Editing Transcripts](https://support.loomanalytics.com/loom-analytics-desktop?hsLang=en#editing-transcripts)
    - [Managing Recordings & Cases](https://support.loomanalytics.com/loom-analytics-desktop?hsLang=en#managing-recordings-cases)
    - [Uninstalling Loom Analytics Desktop](https://support.loomanalytics.com/loom-analytics-desktop?hsLang=en#uninstalling-loom-analytics-desktop)
    - [Troubleshooting](https://support.loomanalytics.com/loom-analytics-desktop?hsLang=en#troubleshooting)
- [Loom Analytics Desktop - Hermit](https://support.loomanalytics.com/loom-analytics-desktop-hermit?hsLang=en#main-content)

    - [Introduction](https://support.loomanalytics.com/loom-analytics-desktop-hermit?hsLang=en#introduction)
    - [Getting Started](https://support.loomanalytics.com/loom-analytics-desktop-hermit?hsLang=en#getting-started)
    - [Editing Transcripts](https://support.loomanalytics.com/loom-analytics-desktop-hermit?hsLang=en#editing-transcripts)
    - [Loom Analytics Desktop - Hermit - App Expired](https://support.loomanalytics.com/loom-analytics-desktop-hermit?hsLang=en#loom-analytics-desktop-hermit-app-expired)
    - [How to Download & Install Loom Analytics Desktop - Hermit](https://support.loomanalytics.com/loom-analytics-desktop-hermit?hsLang=en#how-to-download-install-loom-analytics-desktop-hermit)
    - [How Do I Add Funds to Loom Analytics Desktop - Hermit?](https://support.loomanalytics.com/loom-analytics-desktop-hermit?hsLang=en#how-do-i-add-funds-to-loom-analytics-desktop-hermit)
    - [Limitations of Loom Analytics Desktop - Hermit](https://support.loomanalytics.com/loom-analytics-desktop-hermit?hsLang=en#limitations-of-loom-analytics-desktop-hermit)
    - [How Do I Get Loom Analytics Web Profiles on Loom Analytics Desktop - Hermit?](https://support.loomanalytics.com/loom-analytics-desktop-hermit?hsLang=en#how-do-i-get-loom-analytics-web-profiles-on-loom-analytics-desktop-hermit)
- [Loom Analytics: Mobile](https://support.loomanalytics.com/loom-analytics-mobile?hsLang=en#main-content)

    - [Introduction](https://support.loomanalytics.com/loom-analytics-mobile?hsLang=en#introduction)
    - [Loom Analytics Mobile: How It Works](https://support.loomanalytics.com/loom-analytics-mobile?hsLang=en#loom-analytics-mobile-how-it-works)
- [Loom Analytics Web: Processing Jobs](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#main-content)

    - [File Submission](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#file-submission)
    - [Editing Transcripts](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#editing-transcripts)
    - [File Types & Sizes](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#file-types-sizes)
    - [Ontario ACT Legal Transcripts](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#ontario-act-legal-transcripts)
    - [General Transcripts](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#general-transcripts)
    - [Business Transcripts](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#business-transcripts)
    - [Legal Transcripts](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#legal-transcripts)
    - [Insurance Transcripts](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#insurance-transcripts)
    - [Medical Transcripts](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#medical-transcripts)
    - [Medico-Legal Transcription](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#medico-legal-transcription)
    - [Security](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#security)
    - [Usage](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#usage)
    - [Nova Scotia Courts](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#nova-scotia-courts)
    - [Quickstart - Multilingual Transcription & Translation](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#quickstart-multilingual-transcription-translation)
    - [Translate and Transcribe From Non-English Media](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#translate-and-transcribe-from-non-english-media)
    - [How Can I Delete Job Data for Multiple Jobs?](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#how-can-i-delete-job-data-for-multiple-jobs)
    - [How to Convert a .dcr Media File to .wav, .avi, .wma, or .wmv on Liberty Player](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#how-to-convert-a-dcr-media-file-to-wav-avi-wma-or-wmv-on-liberty-player)
    - [How Can I Export Only a Specific Channel From a Multichannel .dcr File?](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#how-can-i-export-only-a-specific-channel-from-a-multichannel-dcr-file)
    - [How Can I Have Timestamps on Every Speaker Change?](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#how-can-i-have-timestamps-on-every-speaker-change)
    - [TimeSync Playback on Loom Analytics Web](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#timesync-playback-on-loom-analytics-web)
    - [Unified Flow](https://support.loomanalytics.com/loom-analytics-web-processing-jobs?hsLang=en#unified-flow)
- [Loom Analytics Web: Profiles & Workflows](https://support.loomanalytics.com/loom-analytics-web-profiles-workflows?hsLang=en#main-content)

    - [Smart Formatting](https://support.loomanalytics.com/loom-analytics-web-profiles-workflows?hsLang=en#smart-formatting)
    - [Creating & Managing Your Profiles](https://support.loomanalytics.com/loom-analytics-web-profiles-workflows?hsLang=en#creating-managing-your-profiles)
    - [How Can I Create a Template for my Loom Analytics Web Profile?](https://support.loomanalytics.com/loom-analytics-web-profiles-workflows?hsLang=en#how-can-i-create-a-template-for-my-loom-analytics-web-profile)
- [Loom Analytics Web: Mac Users](https://support.loomanalytics.com/loom-analytics-web-mac-users?hsLang=en)
- [MS Word Support](https://support.loomanalytics.com/ms-word-support?hsLang=en#main-content)

    - [MS Word Templates & Macros: Setup](https://support.loomanalytics.com/ms-word-support?hsLang=en#ms-word-templates-macros-setup)
    - [MS Word Templates & Macros: Macros](https://support.loomanalytics.com/ms-word-support?hsLang=en#ms-word-templates-macros-macros)
    - [MS Word Basics: Searching & Viewing](https://support.loomanalytics.com/ms-word-support?hsLang=en#ms-word-basics-searching-viewing)
    - [MS Word Basics: MS Word Hotkeys](https://support.loomanalytics.com/ms-word-support?hsLang=en#ms-word-basics-ms-word-hotkeys)
    - [MS Word Basics: Saving & Proofing](https://support.loomanalytics.com/ms-word-support?hsLang=en#ms-word-basics-saving-proofing)
    - [MS Word Basics: Formatting](https://support.loomanalytics.com/ms-word-support?hsLang=en#ms-word-basics-formatting)
    - [MS Word Basics: General](https://support.loomanalytics.com/ms-word-support?hsLang=en#ms-word-basics-general)
- [A/V Support](https://support.loomanalytics.com/a-v-support?hsLang=en#main-content)

    - [Converting Video to Text](https://support.loomanalytics.com/a-v-support?hsLang=en#converting-video-to-text)
    - [Converting Audio to Text](https://support.loomanalytics.com/a-v-support?hsLang=en#converting-audio-to-text)
    - [Audio Transcription Playback Software: Liberty Player](https://support.loomanalytics.com/a-v-support?hsLang=en#audio-transcription-playback-software-liberty-player)
    - [Audio Transcription Playback Software: FTR (For The Record)](https://support.loomanalytics.com/a-v-support?hsLang=en#audio-transcription-playback-software-ftr-for-the-record)
    - [Audio Transcription Playback Software: VIQ Player](https://support.loomanalytics.com/a-v-support?hsLang=en#audio-transcription-playback-software-viq-player)
    - [Audio Transcription Playback Software: VLC Media Player](https://support.loomanalytics.com/a-v-support?hsLang=en#audio-transcription-playback-software-vlc-media-player)
    - [Audio Transcription Playback Software: Express Scribe](https://support.loomanalytics.com/a-v-support?hsLang=en#audio-transcription-playback-software-express-scribe)
- [Computer Configuration](https://support.loomanalytics.com/computer-configuration?hsLang=en#main-content)

    - [Hardware](https://support.loomanalytics.com/computer-configuration?hsLang=en#hardware)
    - [Software](https://support.loomanalytics.com/computer-configuration?hsLang=en#software)
    - [Windows Settings](https://support.loomanalytics.com/computer-configuration?hsLang=en#windows-settings)
- [Resource Centre](https://support.loomanalytics.com/resource-centre?hsLang=en#main-content)

    - [Team Admin - User Invitation Process](https://support.loomanalytics.com/resource-centre?hsLang=en#team-admin-user-invitation-process)
    - [Loom Analytics: Reports](https://support.loomanalytics.com/resource-centre?hsLang=en#loom-analytics-reports)
- [Illoominate Academy](https://support.loomanalytics.com/illoominate-academy?hsLang=en#main-content)

    - [How to Edit Using Loom Analytics Web Within MS Word](https://support.loomanalytics.com/illoominate-academy?hsLang=en#how-to-edit-using-loom-analytics-web-within-ms-word)
- [Loom Analytics Developer Documentation](https://support.loomanalytics.com/loom-analytics-developer-documentation?hsLang=en#main-content)

    - [Postman](https://support.loomanalytics.com/loom-analytics-developer-documentation?hsLang=en#postman)
    - [API Account Specific Setup](https://support.loomanalytics.com/loom-analytics-developer-documentation?hsLang=en#api-account-specific-setup)
    - [API Calls](https://support.loomanalytics.com/loom-analytics-developer-documentation?hsLang=en#api-calls)
    - [Webhook](https://support.loomanalytics.com/loom-analytics-developer-documentation?hsLang=en#webhook)
- [Loom Analytics Product Updates](https://support.loomanalytics.com/loom-analytics-product-updates?hsLang=en#main-content)

    - [August 2024](https://support.loomanalytics.com/loom-analytics-product-updates?hsLang=en#august-2024)
    - [July 2024](https://support.loomanalytics.com/loom-analytics-product-updates?hsLang=en#july-2024)
    - [March 2024](https://support.loomanalytics.com/loom-analytics-product-updates?hsLang=en#march-2024)
- [FAQ](https://support.loomanalytics.com/faq?hsLang=en)

[![Chill listening crop-3](https://support.loomanalytics.com/hs-fs/hubfs/Loom_Analytics_Logo_Transparent.png?width=100&height=30&name=Loom_Analytics_Logo_Transparent.png "Chill listening crop-3")](https://www.loomanalytics.com)

Loom Analytics Knowledge Base

<https://www.linkedin.com/company/loom-analytics> <https://www.facebook.com/LoomAnalytics>

Copyright © 2026, Loom Analytics