1
Answer

Copilot Agent Flow to save MS Form responses

We have many MS Forms each with different number of questions. In my Agent Flow, I have used Parse JSON on output of Get_Response_Details() action. Then used removeproperty() to remove "responder" and "submitDate".  Below is my new object.

{
    "variables": [
        {
            "name": "vFormResponses",
            "type": "Object",
            "value": {
                "rbc2b5586363b4b7f94560a2e66b42e3b": "Test1 936",
                "r7e7f03ffed0248558339580c97960824": "Test2 936"
            }
        }
    ]
}

My question is how to save the values "Test1 936" and "Test2 936" to a string variable.

Answers (1)