Returns a paginated list of conversations belonging to a specific external user. Uses the same cursor-based pagination as the list conversations endpoint.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the app.
The external user identifier to filter conversations by.
Maximum number of conversations to return. Range: 1-100.
A cursor for forward pagination. Returns conversations created after the conversation with this ID.
A cursor for backward pagination. Returns conversations created before the conversation with this ID.
Sort order by creation time. Either 'asc' or 'desc'.
OK
The array of conversation objects for the current page.
The object type. Always 'list'.
The ID of the first conversation in the returned page. Null if the list is empty.
The ID of the last conversation in the returned page. Null if the list is empty.
Whether there are additional conversations beyond this page. Use the 'after' or 'before' query parameters to paginate.