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": "5eeb54d1-dc56-4ee2-b6b1-bab0496c1d68",
  "GroupName": "sample string 1",
  "GroupImage": "sample string 2",
  "GroupMembers": [
    {
      "MemberId": "3846d97e-982c-4938-aa68-4552d519f620",
      "IsLeft": true
    },
    {
      "MemberId": "3846d97e-982c-4938-aa68-4552d519f620",
      "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>3846d97e-982c-4938-aa68-4552d519f620</MemberId>
    </GroupMemberCollectionModel>
    <GroupMemberCollectionModel>
      <IsLeft>true</IsLeft>
      <MemberId>3846d97e-982c-4938-aa68-4552d519f620</MemberId>
    </GroupMemberCollectionModel>
  </GroupMembers>
  <GroupName>sample string 1</GroupName>
  <Id>5eeb54d1-dc56-4ee2-b6b1-bab0496c1d68</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.