I need to receive conversations in order of last message, or at least date updates.
In twilio conversation docs there is a method to get user's conversations. But there is not a word about ordering, only the limit
My code:
const conversations = await client.conversations.v1
.users(user.twilioId)
.userConversations.list({ limit: 20 });