When I perform a /api/v2/conversations/{conversationId}/recordings and get back a response, the mediaUris key returns an object with multiple objects instead of an array.
This is consistent with the Developer Tools website and the latest JS SDK.
Guessing it was intended for single channel recordings, however my site is set-up with dual channel recording?
I can do object.keys on it, so not a real issue - Just seemed inconsistent?
Example response:
"mediaUris": {
"0": {
"mediaUri": "https://...validUrlOne...",
"waveformData": [...validWaveformData...]
},
"1": {
"mediaUri": "https://...validUrlTwo...",
"waveformData": [...validWaveformData...]
},