# 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="/files/BkDAs3i1qnSiLCV0pGCN" 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.osmos.io/developer-docs/embedding-uploader-jobs-table.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
