PUT api/GroupChat/UpdateDetails

Request Information

URI Parameters

None.

Body Parameters

GroupChatUpsertInputModel
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

GroupName

string

None.

GroupImage

string

None.

GroupMembers

Collection of GroupMemberCollectionModel

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "7581077b-3f64-47c2-b70d-f93e55c6c09d",
  "GroupName": "sample string 1",
  "GroupImage": "sample string 2",
  "GroupMembers": [
    {
      "MemberId": "9bbc29cb-8d55-4d2f-9bdd-7bf7ec864529",
      "IsLeft": true
    },
    {
      "MemberId": "9bbc29cb-8d55-4d2f-9bdd-7bf7ec864529",
      "IsLeft": true
    }
  ]
}

application/xml, text/xml

Sample:
<GroupChatUpsertInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Communicator.Models.GroupChat">
  <GroupImage>sample string 2</GroupImage>
  <GroupMembers>
    <GroupMemberCollectionModel>
      <IsLeft>true</IsLeft>
      <MemberId>9bbc29cb-8d55-4d2f-9bdd-7bf7ec864529</MemberId>
    </GroupMemberCollectionModel>
    <GroupMemberCollectionModel>
      <IsLeft>true</IsLeft>
      <MemberId>9bbc29cb-8d55-4d2f-9bdd-7bf7ec864529</MemberId>
    </GroupMemberCollectionModel>
  </GroupMembers>
  <GroupName>sample string 1</GroupName>
  <Id>7581077b-3f64-47c2-b70d-f93e55c6c09d</Id>
</GroupChatUpsertInputModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JsonResultOfCommunicatorJsonResult
NameDescriptionTypeAdditional information
Content

CommunicatorJsonResult

None.

SerializerSettings

JsonSerializerSettings

None.

Encoding

Encoding

None.

Request

HttpRequestMessage

None.

Response Formats

application/json, text/json

Sample:

Sample not available.