Retrieve a specific message in a chat.
curl --request GET \ --url https://api.vectorify.ai/v1/chats/{chat}/messages/{message} \ --header 'Api-Key: <api-key>'
{ "data": { "id": "<string>", "chat_id": "<string>", "role": "<string>", "user": { "id": "<string>", "name": "<string>", "email": "<string>", "avatar": "<string>", "created_at": "<string>" }, "text": "<string>", "text_html": "<string>", "identifier": "<string>", "feedback": "<string>", "created_at": "<string>" } }
The chat ID
The message ID
ChatMessage
The response is of type object.
object
Was this page helpful?