POST api/GroupInformation/UpdateChatDtls_V2
Request Information
URI Parameters
None.
Body Parameters
EditThread| Name | Description | Type | Additional information |
|---|---|---|---|
| AddedParticipants | string |
None. |
|
| DeletedParticipants | string |
None. |
|
| AddedGroups | string |
None. |
|
| DeletedGroups | string |
None. |
|
| LoginUserId | integer |
None. |
|
| ChatId | integer |
None. |
|
| Subject | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AddedParticipants": "sample string 1",
"DeletedParticipants": "sample string 2",
"AddedGroups": "sample string 3",
"DeletedGroups": "sample string 4",
"LoginUserId": 5,
"ChatId": 6,
"Subject": "sample string 7"
}
text/xml
Sample:
<EditThread xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PrimeHealthCare.Model"> <AddedGroups>sample string 3</AddedGroups> <AddedParticipants>sample string 1</AddedParticipants> <ChatId>6</ChatId> <DeletedGroups>sample string 4</DeletedGroups> <DeletedParticipants>sample string 2</DeletedParticipants> <LoginUserId>5</LoginUserId> <Subject>sample string 7</Subject> </EditThread>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
responseData| Name | Description | Type | Additional information |
|---|---|---|---|
| statusCode | integer |
None. |
|
| statusMessage | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"statusCode": 1,
"statusMessage": "sample string 2",
"data": {}
}
text/xml
Sample:
<responseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PrimeHealthCare.Model"> <data /> <statusCode>1</statusCode> <statusMessage>sample string 2</statusMessage> </responseData>