Conversation API
Create and manage conversations in Helper
Conversation API
The Conversation API allows you to create and manage conversations within Helper. A conversation is a container for messages exchanged between a user and Helper.
For detailed API reference, see Create Conversation API Reference.
Create Conversation
Creates a new conversation and returns a conversation slug that can be used in subsequent API calls.
Headers
Header | Value | Description |
---|---|---|
Authorization | Bearer <token> | Session token obtained from the Session API |
Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
isPrompt | boolean | No | Set to true if the conversation is starting from a fixed prompt rather than a message typed by the customer, e.g. a link with a data-helper-prompt attribute. |
Example Request Body
Response
Field | Type | Description |
---|---|---|
conversationSlug | string | Unique identifier for the created conversation. |
Example Response
Error Responses
Status Code | Error | Description |
---|---|---|
401 | Authentication error | The session token is invalid or expired. |
404 | Mailbox not found | The mailbox specified in the session doesn't exist. |
Conversation Behavior
Status
New conversations have different initial statuses based on various factors:
- For
isPrompt
sources, conversations are created with aclosed
status - For authenticated users who are identified as VIPs, conversations start with an
open
status - For all other conversations, the default status is
closed
Subjects
By default, conversations start with a generic subject. Helper will automatically generate a more specific subject based on the conversation content. For isPrompt
conversations the subject is initially set to the prompt content, and then generated if the customer follows up.
Programming Patterns
Creating a Simple Conversation
Starting a Conversation with Context
You can create a conversation and immediately add context by creating the conversation first, then using the Chat API to send an initial message:
API References
For complete API specifications, refer to these API reference pages:
- Create Session API Reference - Authenticate and create a session token
- Create Conversation API Reference - Start a new conversation
- Send Message API Reference - Exchange messages within a conversation