# Embedding Uploader Jobs Table

## Overview

Enhance your embedded uploaders by integrating logic that enables users to inspect the details of their uploads. The Uploader Jobs table provides a convenient way for users to view, and download data about their uploads.

<figure><img src="https://353417064-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MYrsDW6vGBTygB1qqSE%2Fuploads%2FwaSMjKfYevadYj0ctj7w%2FCleanShot%202024-03-15%20at%2014.48.11.png?alt=media&#x26;token=0686cc5b-fc63-4e7d-9d5f-633637c710af" alt=""><figcaption><p>Here is an overview of the Embedded Jobs Table</p></figcaption></figure>

## Uploader Jobs

Osmos displays the last 30 days of the uploader job detail.   For each uploader job, you can view the download of the original file, view status, upload date & time, and take action.&#x20;

Your upload will have one of the following statuses:

* Complete - The file was successfully uploaded (note: it may have skipped records)
* Finished with Errors - The upload completed with one or more errors
* Failure - Typically a failure means there is an error with the uploaded data that prevented the Uploader from successfully running

If you need to modify the number of days to display, please contact <support@osmos.io>.

Here is the code snippet to add the jobs table. &#x20;

```html
<script>
  document.body.onload = function () {
    Osmos.loadTable('<your_uploader_token>');
  };
</script>

<div id="osmos-table" style="width: 1080px">
  <!-- table is inserted here -->
</div>
```

{% hint style="info" %}
Don't forget to replace the token ID, `<your_uploader_token>`*,* in the sample above with your uploader Token.
{% endhint %}

{% hint style="info" %}
It is recommended to place this section at the end of your snippet.
{% endhint %}
