Dialogue Cloud

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

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

Configuration

  1. From your Office Portal, go to your Power Automate App:

  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 A Unified Contact Center, or UCC, is a queue of interactions (voice, email, IM, etc.) that are handled by Agents. Each UCC has its own settings, IVR menus and Agents. Agents can belong to one or several UCCs and can have multiple skills (competencies). A UCC can be visualized as a contact center “micro service”. Customers can utilize one UCC (e.g. a global helpdesk), a few UCC’s (e.g. for each department or regional office) or hundreds of UCC’s (e.g. for each bed at a hospital). They are interconnected and can all be managed from one central location.

    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']