missive_list_conversation_posts
Retrieve posts from a Missive conversation in reverse chronological order, with pagination using the oldest post's timestamp.
Instructions
Lists posts in a conversation (GET /conversations/:id/posts), newest first. Paginate with until = created_at of the oldest post from the previous page. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of posts to return. Default 10, max 10. | |
| until | No | Unix timestamp: the `created_at` of the oldest post from the previous page. | |
| conversation_id | Yes | The conversation UUID to list posts from. |