GET v3/conversation/search?text={text}&top={top}

search conversation list for current member

Request Information

Parameters

NameDescriptionAdditional information
text
No documentation available.

Define this parameter in the request URI.

top
No documentation available.

Define this parameter in the request URI.

Response Information

conversation list

Response body formats

application/json, text/json

Sample:
{
  "conversationsList": [
    {
      "conversationId": "sample string 1",
      "subject": "sample string 2",
      "avatar": "sample string 3",
      "createdDate": "sample string 4",
      "createdBy": "sample string 5",
      "updatedDate": "sample string 6",
      "unViewed": true,
      "lastestMessage": "sample string 8",
      "participantsCount": 9
    },
    {
      "conversationId": "sample string 1",
      "subject": "sample string 2",
      "avatar": "sample string 3",
      "createdDate": "sample string 4",
      "createdBy": "sample string 5",
      "updatedDate": "sample string 6",
      "unViewed": true,
      "lastestMessage": "sample string 8",
      "participantsCount": 9
    },
    {
      "conversationId": "sample string 1",
      "subject": "sample string 2",
      "avatar": "sample string 3",
      "createdDate": "sample string 4",
      "createdBy": "sample string 5",
      "updatedDate": "sample string 6",
      "unViewed": true,
      "lastestMessage": "sample string 8",
      "participantsCount": 9
    }
  ],
  "conversationsCount": 1
}

application/xml, text/xml

Sample:
<ConversationListOutVO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Output.Conversation">
  <ConversationsCount>1</ConversationsCount>
  <ConversationsList>
    <ConversationItemVO>
      <Avatar>sample string 3</Avatar>
      <ConversationId>sample string 1</ConversationId>
      <CreatedBy>sample string 5</CreatedBy>
      <CreatedDate>sample string 4</CreatedDate>
      <LastestMessage>sample string 8</LastestMessage>
      <ParticipantsCount>9</ParticipantsCount>
      <Subject>sample string 2</Subject>
      <UnViewed>true</UnViewed>
      <UpdatedDate>sample string 6</UpdatedDate>
    </ConversationItemVO>
    <ConversationItemVO>
      <Avatar>sample string 3</Avatar>
      <ConversationId>sample string 1</ConversationId>
      <CreatedBy>sample string 5</CreatedBy>
      <CreatedDate>sample string 4</CreatedDate>
      <LastestMessage>sample string 8</LastestMessage>
      <ParticipantsCount>9</ParticipantsCount>
      <Subject>sample string 2</Subject>
      <UnViewed>true</UnViewed>
      <UpdatedDate>sample string 6</UpdatedDate>
    </ConversationItemVO>
    <ConversationItemVO>
      <Avatar>sample string 3</Avatar>
      <ConversationId>sample string 1</ConversationId>
      <CreatedBy>sample string 5</CreatedBy>
      <CreatedDate>sample string 4</CreatedDate>
      <LastestMessage>sample string 8</LastestMessage>
      <ParticipantsCount>9</ParticipantsCount>
      <Subject>sample string 2</Subject>
      <UnViewed>true</UnViewed>
      <UpdatedDate>sample string 6</UpdatedDate>
    </ConversationItemVO>
  </ConversationsList>
</ConversationListOutVO>