Skip to main content
GET
/
v1
/
chats
/
{chatId}
/
messages
{
  "items": [
    {
      "id": "<string>",
      "chatId": "<string>",
      "type": "<string>",
      "content": "<string>",
      "suggestions": [
        "<string>"
      ],
      "products": [
        {
          "gtin": "<string>",
          "brand": "<string>",
          "designation": "<string>",
          "url": "<string>",
          "image": "<string>",
          "price": 123,
          "priceInfo": "<string>",
          "currency": "<string>",
          "location": [
            {
              "key": "<string>",
              "value": "<string>"
            }
          ],
          "availability": {
            "status": "<string>",
            "quantity": 123
          },
          "category": "<string>",
          "query": "<string>",
          "description": "<string>",
          "recommendationText": "<string>",
          "flags": [
            {
              "type": "<string>",
              "title": "<string>",
              "text": "<string>"
            }
          ]
        }
      ],
      "createdAt": "<string>"
    }
  ],
  "totalItems": 123,
  "size": 123,
  "totalPages": 123,
  "currentPage": 123,
  "hasPrevPage": true,
  "hasNextPage": true,
  "prevPage": 123,
  "nextPage": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chatId
string
required

Response

200 - application/json
items
object[]
required
totalItems
number
required
size
number
required
totalPages
number
required
currentPage
number
required
hasPrevPage
boolean
required
hasNextPage
boolean
required
prevPage
number | null
nextPage
number | null
I