Skip to content
ActionUnipileUpdated May 2026

How do I list messages in a Unipile conversation?

Short answer: Drop the "UnipileList Messages" action anywhere in your workflow, map the inputs from upstream nodes, and publish.

Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Chat ID
chat_id
stringRequiredThe conversation/chat ID to fetch messages from
Limit
limit
stringOptionalMaximum number of messages to return
Cursor
cursor
stringOptionalPagination cursor from previous response
Sample request
{
"chat_id": "e.g. chat_abc123",
"limit": "10",
"cursor": "{{trigger.cursor}}"
}
Returns
{
"items": [
{
"id": "msg_abc123",
"text": "Hi, are you available for a call?",
"object": "Message",
"chat_id": "chat_abc123",
"is_sender": false,
"sender_id": "user_001",
"timestamp": "2025-03-15T10:00:00Z"
},
{
"id": "msg_abc124",
"text": "Sure, let me know the time.",
"object": "Message",
"chat_id": "chat_abc123",
"is_sender": true,
"sender_id": "me",
"timestamp": "2025-03-15T10:05:00Z"
}
],
"cursor": "next_cursor_token",
"object": "list"
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for List Messages.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about List Messages.

What does the List Messages action do in Unipile?
Lists messages in a specific Unipile conversation across the connected account types. Combined with List Conversations, gives you a cross-platform message history view.
What inputs does List Messages require?
Required: Chat ID. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Unipile returns an error?
The workflow pauses on the failed node, the error message is captured in the run log, and you can retry the run with one click. Auto-retry policies are configurable per workflow with exponential backoff up to 5 attempts.
Does List Messages support batch operations?
Yes. Run List Messages inside a Loop node to process arrays. Tiny Command handles Unipile's rate limits automatically so you don't have to throttle manually.
More actions

Other Unipile actions.

Send list messages from your workflows.

Triggered by anything in the catalog. Free tier available. No credit card.