GET
/
v1
/
chat
/
messages
/
{id}
curl --request GET \
  --url https://api.botpress.cloud/v1/chat/messages/{id}
{
  "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

Id of the Message

Response

200
application/json
Returns a [Message](#schema_message) object if a valid identifier was provided. Returns an [Error](#errors) otherwise
message
object
required

The Message object represents a message in a Conversation for a specific User.