I've set up a Dialogflow webhook with PHP that is working correctly. Receives a query and responds with a text string (shown correctly by the agent). The problem that I have is I can't figure out a correct payload that sends a reply with two links to be shown by the agent to the user. Can someone kindly post a json example of a reply that shows, for example, 2 links? My current respond in JSON is quite simple:
{
"source": "aaaaaaaa-aaaaaaaa-aaaa-aaaaaaaa-aaaaaaaa",
"fulfillmentText": "Response OK",
"payload": {
"items": [
{"simpleResponse":
{"textToSpeech": "RESPONSE: OK"}
}
]
}
}