POST
/
agents
/
{agentId}
/
convos
curl --request POST \
  --url https://eu-gcp-api.vg-stuff.com/v3/agents/{agentId}/convos \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "conversation": {
    "ts": 123,
    "messagesNum": 0,
    "title": "<string>",
    "userID": "<string>"
  }
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "id": "<string>",
    "title": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agentId
string
required

Body

application/json

Response

200
application/json

Conversation created successfully

The response is of type object.