Skip to main content
POST
/
api
/
v1
/
public
/
share
/
{shareId}
/
continue
Continue a shared conversation
curl --request POST \
  --url https://handauncle-backend-prod-205012263523.asia-south1.run.app/api/v1/public/share/{shareId}/continue \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>"
}
'
{
  "success": true,
  "data": {
    "conversationId": "<string>",
    "messageId": "<string>"
  },
  "meta": {
    "timestamp": "2023-11-07T05:31:56Z",
    "requestId": "<string>"
  }
}
Forks a shared transcript into a brand-new conversation for the (anonymous) viewer. Supply a message body to seed the new chat. Continuation is only allowed if the original share enabled it.

Path Parameters

shareId
string
required

Share identifier returned by POST /api/v1/share.

Required string length: 8 - 64

Body

application/json
message
string
required
Minimum string length: 1

Response

Forked conversation created.

success
enum<boolean>
required
Available options:
true
data
object
required
meta
object
required