Order conversations in twilio conversations

62 Views Asked by At

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 });
0

There are 0 best solutions below