> For the complete documentation index, see [llms.txt](https://claimlane-docs.gitbook.io/claimlane-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://claimlane-docs.gitbook.io/claimlane-docs/troubleshooting-and-faqs/embedding-claimlane-in-an-iframe.md).

# Embedding Claimlane in an iFrame

### 1. Overview

* The iFrame points to the **Claimlane self-service portal URL** for the specific customer.
* Styling ensures the iFrame looks clean, centered, and with rounded corners.
* Example provided below uses `sommer-store,` replace this with the customer’s actual Claimlane self-service portal URL.

***

### 2. Example Code Snippet

Add the following HTML to the page where you want the Claimlane portal to appear:

```html
<html>
  <head>
    <style>
      .iframe-container {
        max-width: 599px; /* Sets maximum width of the iframe container */
        margin: auto; /* Centers the iframe horizontally */
      }

      /* Style for the iframe */
      .iframe-container iframe {
        border: none; /* Removes border */
        box-shadow: none; /* Removes shadow */
        border-radius: 12px; /* Rounds corners */
      }
    </style>
  </head>
  <body>
    <div class="iframe-container">
      <iframe src="https://app.claimlane.com/c/sommer-store" width="100%" height="800"></iframe>
    </div>
  </body>
</html>

```

***

### 3. Parameters to Adjust

* **src**: Update the URL to the customer’s  self-service portal (e.g., `https://app.claimlane.com/c/portal-name`).
* **height**: Adjust to control vertical space (default is `800px`).
* **max-width**: Update if you want a wider or narrower embed (default is `599px`).

That’s it, once embedded, the Claimlane portal will render inside your site with a clean, styled container.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://claimlane-docs.gitbook.io/claimlane-docs/troubleshooting-and-faqs/embedding-claimlane-in-an-iframe.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
