# Frontend

Its possible for customer to see all their digital assets

All customer need to do is to log into their account and go to the following url

/apps/digital-assets-manager

### Digital assets listing on other page - e.g Account area

Its possible to list digital assets list on other page by add on the follow snippet to the any page's liquid file

```
{% render 'shopify://apps/digital-asset-manager/snippets/digital-assets-manager/7dae70ad-9f74-455e-90f5-4d97d948ec86' %}
```

If the above shopify snippet doesn't work, then you will have to put in the following code

```
<script type="text/javascript">
{% if customer %}
	window._dam_customer_id = {{ customer.id | json }};
{% endif %}
</script>

<div id="_dam_root"></div>
<script type="text/javascript" src="https://s3-eu-west-1.amazonaws.com/varify-dam/static/frontend/js/frontend.js"></script>
```


---

# 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://dam-documentation.vitaliteration.com/frontend.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.
