GET v1/Shops/{shopId}/MessageConversations/{messageConversationId}/Messages?pageSize={pageSize}&pageNumber={pageNumber}

Get a list with all available Messages for the given ShopId and MessageConversationId.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
shopId

The id of the shop.

integer

Required.

messageConversationId

The id of the MessageConversation.

integer

Required.

pageSize

The max number of items returned. Default this value is 100.

integer

Is Optional.

Default value is 100.

pageNumber

The page to return. Default page 1 will be returned.

integer

Is Optional.

Default value is 1.

Body Parameters

None.

Response Information

Resource Description

A list of the MessageBasicInfo objects.

Collection of MessageBasicInfo
NameDescriptionTypeAdditional information
Id

Gets or sets the identifier.

integer

Required

MessageConversationId

Gets or sets the MessageConversationId.

integer

Required

Body

Gets or sets the Body.

string

Max length: 2147483647

CreationDate

Gets or sets the CreationDate.

date

None.

MessageSenderEnumValue

Gets or sets the MessageSenderTypeEnumValue.

MessageSenderTypeEnum

Required

IsRead

Gets or sets the IsRead.

boolean

Required

TypeEnumValue

Gets or sets the MessageSenderTypeEnumValue.

MessageTypeEnum

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "MessageConversationId": 2,
    "Body": "sample string 3",
    "CreationDate": "2026-01-11T16:13:10.2064405+01:00",
    "MessageSenderEnumValue": 0,
    "IsRead": true,
    "TypeEnumValue": 0
  },
  {
    "Id": 1,
    "MessageConversationId": 2,
    "Body": "sample string 3",
    "CreationDate": "2026-01-11T16:13:10.2064405+01:00",
    "MessageSenderEnumValue": 0,
    "IsRead": true,
    "TypeEnumValue": 0
  }
]

application/xml, text/xml

Sample:
<ArrayOfMessageBasicInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MessageBasicInfo>
    <Id>1</Id>
    <MessageConversationId>2</MessageConversationId>
    <Body>sample string 3</Body>
    <CreationDate>2026-01-11T16:13:10.2064405+01:00</CreationDate>
    <MessageSenderEnumValue>Employee</MessageSenderEnumValue>
    <IsRead>true</IsRead>
    <TypeEnumValue>Text</TypeEnumValue>
  </MessageBasicInfo>
  <MessageBasicInfo>
    <Id>1</Id>
    <MessageConversationId>2</MessageConversationId>
    <Body>sample string 3</Body>
    <CreationDate>2026-01-11T16:13:10.2064405+01:00</CreationDate>
    <MessageSenderEnumValue>Employee</MessageSenderEnumValue>
    <IsRead>true</IsRead>
    <TypeEnumValue>Text</TypeEnumValue>
  </MessageBasicInfo>
</ArrayOfMessageBasicInfo>