Chat
Continue chat
Chat
Continue chat
POST
/
v1
/
sessions
/
{sessionId}
/
continueChat
curl --request POST \
--url https://typebot.io/api/v1/sessions/{sessionId}/continueChat \
--header 'Content-Type: application/json' \
--data '{
"message": "<string>"
}'
{
"lastMessageNewFormat": "<string>",
"messages": [
{
"id": "<string>",
"type": "text",
"content": {
"html": "<string>",
"richText": [
"<any>"
],
"plainText": "<string>"
}
}
],
"input": {
"id": "<string>",
"outgoingEdgeId": "<string>",
"type": "text input",
"options": {
"labels": {
"placeholder": "<string>",
"button": "<string>"
},
"variableId": "<string>",
"isLong": true
},
"prefilledValue": "<string>",
"runtimeOptions": {
"paymentIntentSecret": "<string>",
"amountLabel": "<string>",
"publicKey": "<string>"
}
},
"clientSideActions": [
{
"type": "scriptToExecute",
"scriptToExecute": {
"content": "<string>",
"args": [
{
"id": "<string>",
"value": "<string>"
}
]
},
"lastBubbleBlockId": "<string>",
"expectsDedicatedReply": true
}
],
"logs": [
{
"status": "<string>",
"description": "<string>",
"details": "<any>"
}
],
"dynamicTheme": {
"hostAvatarUrl": "<string>",
"guestAvatarUrl": "<string>"
}
}
Body
application/json
Response
200
application/json
Successful response
The sent message is validated and formatted on the backend. For example, if for a date input you replied something like tomorrow
, the backend will convert it to a date string. This field returns the formatted message.
Available options:
text input
Actions to execute on the client side
Available options:
scriptToExecute
curl --request POST \
--url https://typebot.io/api/v1/sessions/{sessionId}/continueChat \
--header 'Content-Type: application/json' \
--data '{
"message": "<string>"
}'
{
"lastMessageNewFormat": "<string>",
"messages": [
{
"id": "<string>",
"type": "text",
"content": {
"html": "<string>",
"richText": [
"<any>"
],
"plainText": "<string>"
}
}
],
"input": {
"id": "<string>",
"outgoingEdgeId": "<string>",
"type": "text input",
"options": {
"labels": {
"placeholder": "<string>",
"button": "<string>"
},
"variableId": "<string>",
"isLong": true
},
"prefilledValue": "<string>",
"runtimeOptions": {
"paymentIntentSecret": "<string>",
"amountLabel": "<string>",
"publicKey": "<string>"
}
},
"clientSideActions": [
{
"type": "scriptToExecute",
"scriptToExecute": {
"content": "<string>",
"args": [
{
"id": "<string>",
"value": "<string>"
}
]
},
"lastBubbleBlockId": "<string>",
"expectsDedicatedReply": true
}
],
"logs": [
{
"status": "<string>",
"description": "<string>",
"details": "<any>"
}
],
"dynamicTheme": {
"hostAvatarUrl": "<string>",
"guestAvatarUrl": "<string>"
}
}