Hi,
I'm trying to integrate with Genesys Cloud via Open Messaging. I have everything set up, agent messages are delivered to webhook as expected. However, I'm missing few events which were available in Genesys Engage:
- ParticipantJoined & ParticipantLeft
I'm aware we can derive this information from events published to topic v2.routing.queues.{id}.conversations
but it is tricky because:
I) we can have a lot of queues we need to subscribe for
II) events are only delivered via websocket and we need to connect to it from our back end
Any chances such events can be published to webhook in foreseeable future?
- TypingStarted & TypingStopped
We have enabled typing indicators and events are delivered as expected, however they always looks pretty much the same:
{
"eventType": "Typing",
"typing": {
"type": "On",
"duration": 5000
}
}
Is "type" always 'On', or can it be 'Off' (or sth similar) ? What does duration mean?
Regards,
Mateusz