# Importing Attachments during Asset Import

Hub allows you to import [attachments](/core-concepts/attachments.md) together with assets, at the same time.

To do so, you will have to use the *Cloud Import JSON* method for importing assets, as explained below:

1. In your project, go to the *Assets* tab and click on the *Add Data* button.
2. From the dialog that appears, enter the *Cloud Storage* tab.
3. Prepare a JSON formatted like the following. It is an array of objects, with each object representing an asset. Each object, then, in its `attachments` property, will have a list of attachments, like so:

{% hint style="warning" %}
URLs may not contain spaces or "+" characters anywhere.
{% endhint %}

```json
[
    {
        "externalId":"my_external_id",
        "data":"https://url-to.asset/video.mp4",
        "attachments":[
            {"type":"IMAGE","value":"https://angohub-public-assets.s3.amazonaws.com/uploaded-data-6cbc3c56-58f9-4430-990d-863bd5a1a755.jpg"},
            {"type":"TEXT","value":"This is a text attachment."}
        ]
    }
]
```

4. Drag and drop the JSON you've just created on the *Cloud Storage* file box:

   <figure><img src="/files/Qrd0IHBJ7gTIUHjuAsLQ" alt=""><figcaption></figcaption></figure>
5. Your assets with attachments will appear in the *Assets* tab.

See the pages on [attachments](/core-concepts/attachments.md) and [cloud import](/data/importing-assets/asset-cloud-import.md) for more on each topic.


---

# 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.imerit.net/data/importing-assets/importing-attachments-during-asset-import.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.
