PUT
/
v1
/
chat
/
messages
/
{id}
curl --request PUT \
  --url https://api.botpress.cloud/v1/chat/messages/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "tags": {},
  "payload": {}
}'
{
  "message": {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "type": "<string>",
    "payload": {},
    "direction": "incoming",
    "userId": "<string>",
    "conversationId": "<string>",
    "tags": {}
  }
}

Path Parameters

id
string
required

Message id

Body

application/json
Message data

The body is of type object.

Response

200
application/json
Message information

The response is of type object.