Headers
Authentication Key
Path Parameters
ID of the Message
Response
Returns a Message object if a valid identifier was provided
The Message object represents a message in a Conversation for a specific User.
curl --request GET \
--url https://chat.botpress.cloud/{webhookUrl}/messages/{id} \
--header 'x-user-key: <x-user-key>'{
"message": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"payload": {
"audioUrl": "<string>",
"type": "audio"
},
"userId": "<string>",
"conversationId": "<string>"
}
}Retrieves the Message object for a valid identifier.
curl --request GET \
--url https://chat.botpress.cloud/{webhookUrl}/messages/{id} \
--header 'x-user-key: <x-user-key>'{
"message": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"payload": {
"audioUrl": "<string>",
"type": "audio"
},
"userId": "<string>",
"conversationId": "<string>"
}
}Authentication Key
ID of the Message
Returns a Message object if a valid identifier was provided
The Message object represents a message in a Conversation for a specific User.
Show child attributes
Was this page helpful?