Agent workspace - show view block set json

0

How can I dynamically set the values for the four items in a data section within an Amazon Connect view? I've configured contact attributes in my Amazon Connect flow and created a Show View block within the same flow. How do I pass these attribute values to the data section items using JSON format in the Show View block configuration?

Ammu
posta un mese fa117 visualizzazioni
1 Risposta
0
Risposta accettata

1 - Enable Dynamic Items: Navigate to the View Design UI. Check the "This is dynamic" checkbox of DataSection component to make the 'Items' property dynamic. Click "Publish" to save the changes.

2 - Go to the "Show View" block within the Connect Flow. Look for the field named "Set JSON". If it is not visible: Try selecting a different view from the View dropdown, then reselect your original view. This can refresh the UI and make the "Set JSON" field appear. Once the "Set JSON" field is visible, enter the following JSON configuration:

{
  "Items": [
    {
      "Label": "Example 1",
      "Value": "Attribute 1"
    },
    {
      "Label": "Example 2",
      "Value": "Attribute 2"
    },
    {
      "Label": "Example 3",
      "Value": "Attribute 4"
    },
    {
      "Label": "Example 4",
      "Value": "Attribute 2"
    }
  ]
}

To set a value field in the JSON to user-defined attributes, format it like this:

"Value": "$.Attributes.val1"

Replace val1 with the actual attribute key you wish to use.

Arne
con risposta 22 giorni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande