GET api/Chat/GetUserConversationList?receiverId={receiverId}&loggedInUserId={loggedInUserId}&pageNo={pageNo}&pageSize={pageSize}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
receiverId
No documentation available.

Define this parameter in the request URI.

loggedInUserId
No documentation available.

Define this parameter in the request URI.

pageNo
No documentation available.

Define this parameter in the request URI.

pageSize
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "chatAcceptanceStatus": 1,
  "Chat": [
    {
      "PK_ChatId": 1,
      "Message": "sample string 2",
      "MessageType": 3,
      "AttachmentPath": "sample string 4",
      "SenderId": "sample string 5",
      "ReceiverId": "sample string 6",
      "SendDate": "sample string 7",
      "IsListingChat": true
    },
    {
      "PK_ChatId": 1,
      "Message": "sample string 2",
      "MessageType": 3,
      "AttachmentPath": "sample string 4",
      "SenderId": "sample string 5",
      "ReceiverId": "sample string 6",
      "SendDate": "sample string 7",
      "IsListingChat": true
    },
    {
      "PK_ChatId": 1,
      "Message": "sample string 2",
      "MessageType": 3,
      "AttachmentPath": "sample string 4",
      "SenderId": "sample string 5",
      "ReceiverId": "sample string 6",
      "SendDate": "sample string 7",
      "IsListingChat": true
    }
  ],
  "NextPage": 2,
  "senderImage": "sample string 3",
  "blockedByLoggedInUser": true,
  "loggedInUserBlockedByOtherUser": true,
  "response": "sample string 6",
  "message": "sample string 7",
  "addedId": "sample string 8"
}

text/xml

Sample:
<UserConversationPaginationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/webapishopinbelgium.Models">
  <addedId>sample string 8</addedId>
  <message>sample string 7</message>
  <response>sample string 6</response>
  <Chat>
    <ConversationListModel>
      <AttachmentPath>sample string 4</AttachmentPath>
      <IsListingChat>true</IsListingChat>
      <Message>sample string 2</Message>
      <MessageType>3</MessageType>
      <PK_ChatId>1</PK_ChatId>
      <ReceiverId>sample string 6</ReceiverId>
      <SendDate>sample string 7</SendDate>
      <SenderId>sample string 5</SenderId>
    </ConversationListModel>
    <ConversationListModel>
      <AttachmentPath>sample string 4</AttachmentPath>
      <IsListingChat>true</IsListingChat>
      <Message>sample string 2</Message>
      <MessageType>3</MessageType>
      <PK_ChatId>1</PK_ChatId>
      <ReceiverId>sample string 6</ReceiverId>
      <SendDate>sample string 7</SendDate>
      <SenderId>sample string 5</SenderId>
    </ConversationListModel>
    <ConversationListModel>
      <AttachmentPath>sample string 4</AttachmentPath>
      <IsListingChat>true</IsListingChat>
      <Message>sample string 2</Message>
      <MessageType>3</MessageType>
      <PK_ChatId>1</PK_ChatId>
      <ReceiverId>sample string 6</ReceiverId>
      <SendDate>sample string 7</SendDate>
      <SenderId>sample string 5</SenderId>
    </ConversationListModel>
  </Chat>
  <NextPage>2</NextPage>
  <blockedByLoggedInUser>true</blockedByLoggedInUser>
  <chatAcceptanceStatus>1</chatAcceptanceStatus>
  <loggedInUserBlockedByOtherUser>true</loggedInUserBlockedByOtherUser>
  <senderImage>sample string 3</senderImage>
</UserConversationPaginationModel>