List SMS Conversations
Get the conversation threads for one of your phone numbers.
Returns one entry per other party that the number has texted with, each carrying the most recent message — useful for showing an inbox with a preview of the last message in each thread.
Scoped to user_id: only that user’s own messages on the number are
shown, so a reassigned number never leaks another user’s threads. Works
even after the number is deleted — the user keeps seeing past conversations.
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Query Parameters
The phone number whose conversation threads to list.
The user whose messages on the number are listed (works even if the number was later deleted or reassigned).
How many conversations to return per page (1 to 200).
1 <= x <= 200How many conversations to skip before this page starts.
x >= 0Response
Successful Response
Standard response wrapper for list responses.
Declare ListResponse[list[SomeModel]] to render the real data
array schema in OpenAPI/Swagger; a bare ListResponse leaves data
untyped.
HTTP status code for the response.
Payload or error details.
UTC timestamp (milliseconds since epoch) when response was generated.
Total rows matching the request filters (not just this page).
x >= 0Page size used for this response. Null for cursor-paginated endpoints.
x >= 11-indexed page number for this response. Null for cursor-paginated endpoints.
x >= 1Total number of pages given the current limit. Null for cursor-paginated endpoints.
x >= 0Cursor for the next page, if available.

