> For the complete documentation index, see [llms.txt](https://docs.datajet-app.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.datajet-app.com/liquid/filters/file/content.md).

# content

{% hint style="info" %}
Deprecated. Use [storage\_write](/liquid/tags/storage_write.md) with content parameter.
{% endhint %}

Lets consider following code for HTTP task:

```javascript
{% capture csv_report %}
order_id, total
#121, 220
#122, 140
{% endcapture %}

{% json upload_options %}
  {
    "fileName": "report.csv",
    "content": {{csv_report | strip | json }},
    "public": false
  }
{% endjson %}

{% assign file_result = upload_options | file %}

```

With following code your file will be transferred from url to your storage. Additionally `file_result` will contain a url of the report.
