Skip to main content
July 29, 2022
Question

File upload to Azure blob storage

  • July 29, 2022
  • 8 replies
  • 0 views

Hi,

How to call azure blob storage container and upload files through appian?

Is any plugin available?

    8 replies

    stefanhelzle0001
    Brainy
    July 30, 2022

    Azure blob storage provides an extensive Web API support. I suggest to read the documentation, do some R&D and come back with more specific questions.

    I quickly checked the Appian App Market and did not find a plugin.

    August 4, 2022

    I can able to access azure storage through restapi. From appian i have used integration to access the blob.

    In appian interface, i have a file upload component, while uploading files from local folder, the path of the file will be passed as parameter to the integration which will upload the file to azure blob

    target is my azure storage . how to invoke integration in file upload.

    a!fileUploadField(
                  label: "Cover Letter",
                  target: rule!AzureBlobCreation(local!filepath&ri!fileName,true,false),
                  maxSelections: 1,
                  value: ri!fileName,
                  saveInto: {ri!fileName,
                })

    stefanhelzle0001
    Brainy
    August 4, 2022

    Not. File upload is always going to a folder in Appian first. You can then move the file to Azure later in the process flow.