Returns a single conversation by its ID, with the full message thread embedded inline. Archived conversations are not returned.Documentation Index
Fetch the complete documentation index at: https://docs.replyful.com/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Bearer token in theAuthorization header. See Authentication.
Path parameters
Conversation ID prefixed with
conv_.Response
Returns aConversation object with the full message thread embedded under messages.
The Conversation object
Unique identifier prefixed with
conv_.Always
"conversation".Conversation subject or summary.
Current status. One of
waiting_for_user, needs_first_response, needs_follow_up, scheduled_ai_response, assumed_resolved, resolved, spam, paused, investigating.Who is currently handling the conversation. One of
ai, human.The channel the conversation belongs to.
The contact who started the conversation.
The teammate the conversation is assigned to.
null when unassigned.Topics applied to the conversation.
Tags applied to the conversation.
Urgency rating from
1 (not urgent) to 3 (critical). null when unscored.First 200 characters of the conversation’s opening message. Truncated with
… when longer. null if the conversation has no messages.ISO 8601 UTC timestamp of conversation creation.
ISO 8601 UTC timestamp of the most recent update.
ISO 8601 UTC timestamp of when the conversation started waiting for a response.
null if not waiting.ISO 8601 UTC timestamp of the first human reply.
null if no human has replied yet.ISO 8601 UTC timestamp of resolution.
null while the conversation is open.Every message in the thread, ordered by
createdAt ascending.Examples
Fetch a conversation
Response
Error responses
| Status | error.code | When |
|---|---|---|
401 | missing_api_key | The Authorization header is absent. |
401 | invalid_api_key | The token is malformed, unknown, or archived. |
404 | conversation_not_found | The conversation does not exist, belongs to another organization, or has been archived. |
422 | invalid_path_parameter | The id path parameter is not a valid conv_… ID. |
429 | too_many_requests | Rate limit exceeded. Honor Retry-After. |