# How to get notebook outputs uploaded to Azure Blob Storage

**URL:** https://forums.losant.com/t/how-to-get-notebook-outputs-uploaded-to-azure-blob-storage/4505
**Category:** Help
**Tags:** workflow
**Created:** [May 2, 2022, 5:29pm UTC](https://forums.losant.com/t/how-to-get-notebook-outputs-uploaded-to-azure-blob-storage/4505 "2022-05-02T17:29:25Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Tri\_Trang](https://avatars.discourse-cdn.com/v4/letter/t/cc9497/32.png) [@Tri\_Trang](https://forums.losant.com/u/Tri_Trang)
#### Post date: [May 2, 2022, 5:29pm UTC](https://forums.losant.com/t/how-to-get-notebook-outputs-uploaded-to-azure-blob-storage/4505/1 "2022-05-02T17:29:25Z")

</div>

Hi,

I have some workflows that currently upload notebook outputs to S3 Bucket. I want to switch from S3 Bucket to Azure Blob Storage. I looked at all available workflow nodes but couldn’t find anything similar to the **AWS S3: Put** node for Azure. The logic in the notebooks was originally developed by Losant, and I have nearly zero experience with Losant, so any help would be highly appreciated!  
PS: I’m not looking for application archiving. Just the notebook outputs.  
Here is the link to the workflow: [https://app.losant.com/applications/614a74e40072de000720168b/workflows/614a7500e4d4f800075085b9/](https://app.losant.com/applications/614a74e40072de000720168b/workflows/614a7500e4d4f800075085b9/)

---

<div class="post-metadata">

### Author: ![Brandon\_Cannaday](https://sea1.discourse-cdn.com/flex015/user_avatar/forums.losant.com/brandon_cannaday/32/14_2.png) [@Brandon\_Cannaday](https://forums.losant.com/u/Brandon_Cannaday)
#### Post date: [May 2, 2022, 6:44pm UTC](https://forums.losant.com/t/how-to-get-notebook-outputs-uploaded-to-azure-blob-storage/4505/2 "2022-05-02T18:44:48Z")

</div>

Welcome to the forums @Tri_Trang!

As you’ve noticed, we don’t (yet) have built-in nodes for Azure Blob Storage.

To implement this today, you’ll have to use an [HTTP Node](https://docs.losant.com/workflows/data/http/) and request the [Azure Blob REST API](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-service-rest-api) directly. Specifically the [Put Blob](https://docs.microsoft.com/en-us/rest/api/storageservices/put-blob) endpoint. The series of nodes would be something like:

1. Notebook Trigger
2. HTTP Node(s) to download the notebook output(s) to the workflow payload
3. HTTP Node(s) to upload the content from the payload to Azure Blob storage

I did create feature request tickets for Azure Blob Storage nodes, but I can’t provide any timeline for when they’d be available.

If you reach out to your Losant account representative, this is likely something our internal professional services team can deliver for you, if that’s a route you’d like to take.
