GET
/chats/{chatId}/messages
curl \
--request GET 'https://garden-to-yours.herokuapp.com/chats/{chatId}/messages' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"_id": "string",
"date": "2019-08-24T14:15:22Z",
"text": "string",
"chatId": "string",
"hasRead": true,
"senderId": "string"
}
]