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 Reply
  • I have created folder

    Created constant for that

    when trying to Upload  from interface, not getting any error but files are not in the created folder

    {
      a!localVariables(
       
        a!columnsLayout(
          columns: {
            a!columnLayout(
              contents: {
                
                a!fileUploadField(
                  label: "File Upload",
                  labelPosition: "ABOVE",
                  target: cons!A_AzureFileFolderConstant,
                  maxSelections: 10,
                  value: ri!fileName,
                  saveInto: {ri!fileName   }
                )
              }
            )
          }
        )
      )
    }

Children