# Use Ellipsis Drive to ingest client data

Ellipsis Drive can be used as a controlled ingestion layer for external or client-owned spatial data.

This enables users or customers to upload, manage, and use their own datasets within your application or platform for visualisation, data fusion, and analytics.

You can implement this in two ways:

* by [Connecting Ellipsis Drive to your platform](https://docs.ellipsis-drive.com/developers/integration-options/connect-ellipsis-drive-to-your-platform)
* or by using Ellipsis Drive as a white-labelled data management layer with your own UI/UX

***

### Recommended implementation structure

A common implementation pattern is to structure data per client or user using folders.

#### Step 1: Create a folder per client

[Create a dedicated folder](https://docs.ellipsis-drive.com/developers/api-v3/path-folder) for each client or user.

Store the corresponding folder IDs in your backend to manage access mapping.

***

#### Step 2: Generate access tokens per session

When a user logs in, [generate an access token](https://docs.ellipsis-drive.com/developers/api-v3/account/access-tokens) scoped to the relevant folder(s).

Choose an appropriate access level based on the required permissions.

Access levels are [documented separately](https://docs.ellipsis-drive.com/getting-started/quick-start/5.-data-sharing-and-user-access).

***

#### Step 3: [Use the API](https://docs.ellipsis-drive.com/developers/api-v3) to interact with data

Pass the token and folder context to your application to enable operations such as:

* [uploading datasets](https://docs.ellipsis-drive.com/developers/api-v3/path-raster/timestamps/upload-raster)
* [listing folders and layers](https://docs.ellipsis-drive.com/developers/api-v3/path-folder/list-folder)
* [displaying spatial data](https://docs.ellipsis-drive.com/developers/integration-options/display-ellipsis-drive-layers-in-your-app)
* managing client-specific content

***

{% hint style="success" %}

### Integration vs platform connection

You can either:

* **Integrate Ellipsis Drive into your backend**\
  → full control over authentication, logic, and data flows
* [**Connect Ellipsis Drive to your platform**](https://docs.ellipsis-drive.com/developers/integration-options/connect-ellipsis-drive-to-your-platform)\
  → leverage existing UI components and reduce implementation overhead
  {% 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.ellipsis-drive.com/developers/common-integrations/use-ellipsis-drive-to-ingest-client-data.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.
