On Premises

Example configuration Microsoft Power Automate to set a voicemail as Welcome Message

This example shows you how to set the AnywhereNow Voicemail as the Audio Question for the Welcome M

Configuration

  1. Navigate to Microsoft Power Automate.

  2. Click "My Flows":

  3. Click "New" and "Instant - from Blank":

  4. Press Skip

  5. Add the trigger "When a file is created (properties only)", from SharePoint

    1. Site Address = Site of the UCC

    2. Library Name = Voicemail

  6. Add the action "Get file content", from SharePoint

    1. Site Address = Site of the UCC

    2. File Identifier:

      Copy
      Expression
      @triggerBody()?['{Identifier}']

  7. Add the Action "Create file", from SharePoint

    1. Site Address = Site of the UCC

    2. Folder Path = /AudioFiles

    3. File Name:

      Copy
      Expression
      @{triggerBody()?['{FilenameWithExtension}']}
    4. File Content:

      Copy
      Expression
      @{body('Get_file_content')}

  8. Add the Action "Update file properties", from SharePoint

    1. Site Address = Site of the UCC

    2. Library Name = AudioFiles

    3. Id:

      Copy
      Expression
      @{body('Create_file')?['ItemId']}
    4. Title:

      Copy
      Expression
      @{triggerBody()?['Title']}

  9. Add the Action "Update item", from SharePoint

    1. Site Address = Site of the UCC

    2. List Name = IVRQuestions

    3. Id = Id of the Welcome Message

      Note

      You can get your ID, by editing the item. Example: https://contoso.sharepoint.com/sites/ucc/ucc_support/Lists/IVRQuestions/EditForm.aspx?ID=1

    4. Title = Welcome Message

    5. AudioQuestion Id:

      Copy
      Expression
      @body('Create_file')?['ItemId']