> ## Documentation Index
> Fetch the complete documentation index at: https://docs.uplifthub.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Line item tabs

> What each tab on a line item does — Overview, Brief, Creatives, Evidence, Reporting, Comments, History, and Settings.

export const Pill = ({tone = "live", children}) => <span style={{
  display: "inline-flex",
  alignItems: "center",
  gap: 6,
  height: 22,
  padding: "0 8px",
  borderRadius: 1000,
  fontSize: 12,
  fontWeight: 500,
  letterSpacing: "-0.005em",
  background: ({
    live: "#ebf7ed",
    ready: "#eef1fb",
    draft: "#f7f8f8",
    paused: "#faeaea",
    archived: "#f7f8f8"
  })[tone],
  color: ({
    live: "#267d36",
    ready: "#2743a6",
    draft: "#4f575e",
    paused: "#c92a2a",
    archived: "#4f575e"
  })[tone],
  border: tone === "draft" || tone === "archived" ? "1px solid #dee2e6" : "none"
}}>
    <span style={{
  width: 8,
  height: 8,
  borderRadius: "50%",
  background: tone === "draft" ? "transparent" : "currentColor",
  border: tone === "draft" ? "1.5px solid #6a7178" : "none"
}} />
    {children}
  </span>;

export const Ui = ({children}) => <span style={{
  display: "inline-flex",
  alignItems: "center",
  padding: "1px 6px",
  background: "#f7f8f8",
  border: "1px solid #e9ecef",
  borderRadius: 4,
  fontSize: "0.92em",
  fontWeight: 500,
  color: "#101213"
}}>
    {children}
  </span>;

Every line item has eight tabs running across the top of the screen. This page explains what lives in each one and when to use it.

***

## Overview

The default view when you open a line item. The form is split into four collapsible sections — **Line Item**, **Pricing & Revenue**, **Product**, and **Delivery Costs**. Click <Ui>Save Changes</Ui> in the top right to persist any edits.

<Frame caption="The line item Overview tab — details, pricing, product, and delivery cost sections.">
  <img src="https://cdn-uplifthubs.s3.eu-west-2.amazonaws.com/Documentation/screencapture-app-uplifthub-io-P195-Uplifthub-LineItemDetail-2026-05-05-21_59_51.png" alt="Line item Overview tab" />
</Frame>

### Line Item

| Field                | Notes                                                                                           |
| -------------------- | ----------------------------------------------------------------------------------------------- |
| **Line Item Name**   | The name as it appears in the campaign line items table.                                        |
| **Campaign**         | The parent campaign. Read-only after creation.                                                  |
| **Tags**             | Apply tags to group and filter this line item across the platform.                              |
| **Product**          | The ad product being delivered. Read-only after creation.                                       |
| **Collaborators**    | Team members to notify on status changes.                                                       |
| **Start / End Date** | The flight dates for this line item.                                                            |
| **Creative Due**     | The deadline by which all creatives must be uploaded and approved to go live on the start date. |
| **Notes**            | Free-text field for targeting requirements, prioritisation notes, or links to the brief.        |

### Pricing & Revenue

| Field               | Notes                                                                                 |
| ------------------- | ------------------------------------------------------------------------------------- |
| **Rate**            | The price per unit charged to the client.                                             |
| **Pricing Model**   | How the line item is charged — CPM, CPC, flat fee, etc.                               |
| **Discount**        | An optional partner discount applied to the rate.                                     |
| **Units**           | The volume being sold — impressions, clicks, or other unit depending on the product.  |
| **Minimum Revenue** | A floor value for this line item. A warning appears if Booked Revenue falls below it. |
| **Booked Revenue**  | Calculated automatically from rate, units, and discount.                              |

### Product

Read-only information pulled from the product catalogue — the product name, delivery priority, channel, platform, product overview, and creative specs. Click <Ui>Open Product Page</Ui> to view the full product record.

**Delivery Priority** is editable here. It determines the order in which this line item competes for available impressions — higher priority line items are served first. Changing this may cause other line items to under-deliver.

### Delivery Costs

The cost to the publisher or operator to deliver this line item — for example, third-party ad serving fees or platform costs. These are separate from the client-facing rate.

| Field          | Notes                                              |
| -------------- | -------------------------------------------------- |
| **Unit Cost**  | The cost per unit to fulfil this line item.        |
| **Total Cost** | Calculated automatically from unit cost and units. |

***

## Brief

The **Brief** tab holds the creative and targeting brief for this specific line item — the instructions the design team needs to build the ad. Fill these fields in before creatives are built.

### Line item brief fields

| Field                               | Notes                                                                    |
| ----------------------------------- | ------------------------------------------------------------------------ |
| **Targeting Criteria**              | The specific targeting parameters for this line item.                    |
| **Additional Notes for Setup**      | Any technical or platform setup notes.                                   |
| **Creative Objective**              | What this ad is trying to achieve.                                       |
| **Key Message / Value Proposition** | The main message the ad should communicate.                              |
| **Headline Suggestions**            | Suggested headline copy for the creative.                                |
| **Body Copy Guidance**              | Guidance on tone and content for the ad body text.                       |
| **Call to Action (CTA)**            | The desired CTA text (e.g. "Book Now", "Find Out More").                 |
| **Mandatory Elements**              | Any elements that must appear in the creative — logos, disclaimers, etc. |
| **Target Platform Considerations**  | Any platform-specific requirements (e.g. mobile-first, dark mode).       |
| **Additional Notes for Designer**   | Anything else the designer needs to know.                                |
| **Reference URLs**                  | Links to inspiration, competitor ads, or brand guidelines.               |
| **Campaign URL**                    | The destination URL for this line item's ad.                             |
| **UTMs to be applied**              | The UTM parameters to append to the campaign URL for tracking.           |

### Assets

Below the brief fields, the **Assets** section stores client-supplied files linked specifically to this line item — images, logos, or any other assets the designer needs. Click <Ui>+ Add Asset</Ui> to upload.

<Frame caption="The Brief tab — line item brief fields and assets section.">
  <img src="https://cdn-uplifthubs.s3.eu-west-2.amazonaws.com/Documentation/screencapture-app-uplifthub-io-P195-Uplifthub-LineItemDetail-2026-05-05-22_00_02.png" alt="Line item Brief tab showing brief fields and assets" />
</Frame>

***

## Creatives

Lists all creatives attached to this line item, each showing its name, status, creative type, date type, and flight dates. Click <Ui>New Creative</Ui> to add one, or click any row to open the creative detail page.

The dropdown arrow next to <Ui>New Creative</Ui> gives access to bulk actions on selected creatives.

<Frame caption="The Creatives tab — all creatives for this line item with status and date columns.">
  <img src="https://cdn-uplifthubs.s3.eu-west-2.amazonaws.com/Documentation/screencapture-app-uplifthub-io-P195-Uplifthub-LineItemDetail-2026-05-05-22_00_10.png" alt="Line item Creatives tab" />
</Frame>

<Tip>
  See [Adding creatives](/creatives/add) and [Building creatives](/creatives/build) for the full creative workflow.
</Tip>

***

## Evidence

Store screenshots of this line item's ads appearing in situ — proof that it went live and delivered as booked. Click <Ui>New Evidence</Ui> to upload a screenshot. Use the search bar to find evidence already uploaded.

Evidence uploaded here is also visible in the rolled-up **Evidence** tab on the parent campaign.

<Frame caption="The Evidence tab — upload screenshots as proof of delivery for this line item.">
  <img src="https://cdn-uplifthubs.s3.eu-west-2.amazonaws.com/Documentation/screencapture-app-uplifthub-io-P195-Uplifthub-LineItemDetail-2026-05-05-22_00_19.png" alt="Line item Evidence tab" />
</Frame>

***

## Reporting

Shows **Custom Reporting Fields** — fields configured specifically for your account and product. These are used for manual reporting on line items that don't have automated delivery data via Uplift Ads or Uplift Ads+.

The fields available here vary by product and workspace. To add or change reporting fields, contact [support@uplifthub.io](mailto:support@uplifthub.io).

<Frame caption="The Reporting tab — custom reporting fields for this line item.">
  <img src="https://cdn-uplifthubs.s3.eu-west-2.amazonaws.com/Documentation/screencapture-app-uplifthub-io-P195-Uplifthub-LineItemDetail-2026-05-05-22_00_36.png" alt="Line item Reporting tab" />
</Frame>

<Tip>
  For line items delivered via Uplift Ads or Uplift Ads+, performance data (impressions, clicks, CTR, pacing) appears on the campaign-level **Reporting** tab instead. See [Tracking performance](/reporting/tracking).
</Tip>

***

## Comments

A shared comment thread for this line item. Two modes are available via the toggle in the top right:

* **Client Comments** — the standard comment thread for the team. Use this for day-to-day notes, questions, and approvals.
* **Internal Comments** — restricted to super admins only. Use this for notes that should not be visible to the wider team.

Use **@mentions** to notify specific teammates or your Platform 195 representative directly. Comments support rich text formatting up to 500 characters per message.

<Frame caption="The Comments tab — internal and client comment threads with rich text formatting.">
  <img src="https://cdn-uplifthubs.s3.eu-west-2.amazonaws.com/Documentation/screencapture-app-uplifthub-io-P195-Uplifthub-LineItemDetail-2026-05-05-22_00_49.png" alt="Line item Comments tab" />
</Frame>

***

## History

A full chronological log of every change made to this line item — who did what and when. Each entry shows the timestamp, user, and action. Click the chevron on any entry to expand it and see which fields changed and what they changed from and to.

<Frame caption="The History tab — a complete audit trail of changes to this line item.">
  <img src="https://cdn-uplifthubs.s3.eu-west-2.amazonaws.com/Documentation/screencapture-app-uplifthub-io-P195-Uplifthub-LineItemDetail-2026-05-05-22_00_57.png" alt="Line item History tab" />
</Frame>

***

## Settings

Contains the **Delete Line Item** action. Deleting a line item is permanent and removes all associated creatives and evidence.

<Warning>
  **Deletion cannot be undone.** All creatives, evidence, and history for this line item will be permanently removed. If you need to stop a line item from delivering without deleting it, change its status to <Pill tone="paused">Paused</Pill> instead.
</Warning>

<Frame caption="The Settings tab — the only action here is permanently deleting the line item.">
  <img src="https://cdn-uplifthubs.s3.eu-west-2.amazonaws.com/Documentation/screencapture-app-uplifthub-io-P195-Uplifthub-LineItemDetail-2026-05-05-22_01_03.png" alt="Line item Settings tab" />
</Frame>
