File upload to Azure blob storage

Hi,

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

Is any plugin available?

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    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.

  • 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,
                })

Reply
  • 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,
                })

Children