PATCH
/
agents
/
{agentId}
/
convos
/
{convoId}
curl --request PATCH \
  --url https://eu-gcp-api.vg-stuff.com/v3/agents/{agentId}/convos/{convoId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "conversation": {
    "title": "<string>",
    "tags": [
      "<string>"
    ],
    "lastMessage": "<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
convoId
string
required

Body

application/json

Response

200
application/json

Conversation updated successfully

The response is of type object.