GET api/Chat/GetChatUserById?CurrUid={CurrUid}&CurrUType={CurrUType}&APIToken={APIToken}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CurrUid

integer

None.

CurrUType

integer

None.

APIToken

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ChatGroupUsers
NameDescriptionTypeAdditional information
GroupId

integer

None.

GroupName

string

None.

ChatUserId

integer

None.

UserType

integer

None.

Name

string

None.

AddedBy

integer

None.

Email

string

None.

Response Formats

application/json, text/json, text/plain, text/html

Sample:
[
  {
    "groupId": 1,
    "groupName": "sample string 2",
    "chatUserId": 3,
    "userType": 4,
    "name": "sample string 5",
    "addedBy": 6,
    "email": "sample string 7"
  },
  {
    "groupId": 1,
    "groupName": "sample string 2",
    "chatUserId": 3,
    "userType": 4,
    "name": "sample string 5",
    "addedBy": 6,
    "email": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfChatGroupUsers xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.DataModel">
  <ChatGroupUsers>
    <AddedBy>6</AddedBy>
    <ChatUserId>3</ChatUserId>
    <Email>sample string 7</Email>
    <GroupId>1</GroupId>
    <GroupName>sample string 2</GroupName>
    <Name>sample string 5</Name>
    <UserType>4</UserType>
  </ChatGroupUsers>
  <ChatGroupUsers>
    <AddedBy>6</AddedBy>
    <ChatUserId>3</ChatUserId>
    <Email>sample string 7</Email>
    <GroupId>1</GroupId>
    <GroupName>sample string 2</GroupName>
    <Name>sample string 5</Name>
    <UserType>4</UserType>
  </ChatGroupUsers>
</ArrayOfChatGroupUsers>

multipart/form-data

Sample:
<ArrayOfChatGroupUsers xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.DataModel"><ChatGroupUsers><AddedBy>6</AddedBy><ChatUserId>3</ChatUserId><Email>sample string 7</Email><GroupId>1</GroupId><GroupName>sample string 2</GroupName><Name>sample string 5</Name><UserType>4</UserType></ChatGroupUsers><ChatGroupUsers><AddedBy>6</AddedBy><ChatUserId>3</ChatUserId><Email>sample string 7</Email><GroupId>1</GroupId><GroupName>sample string 2</GroupName><Name>sample string 5</Name><UserType>4</UserType></ChatGroupUsers></ArrayOfChatGroupUsers>