missive_list_conversation_messages
Retrieve messages from a Missive conversation, newest first, excluding drafts. Supports pagination using the delivered_at timestamp of the oldest message.
Instructions
Lists messages in a conversation (GET /conversations/:id/messages), newest first; draft messages are excluded. Paginate with until = delivered_at of the oldest message from the previous page. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of messages to return. Default 10, max 10. | |
| until | No | Unix timestamp: the `delivered_at` of the oldest message from the previous page. | |
| conversation_id | Yes | The conversation UUID to list messages from. |