POST api/Chat/DeleteChatGroup

Request Information

URI Parameters

None.

Body Parameters

DeleteChatGroupRM
NameDescriptionTypeAdditional information
GroupId

integer

None.

FromId

integer

None.

FromUserType

string

None.

APIToken

string

None.

Request Formats

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

Sample:
{
  "groupId": 1,
  "fromId": 1,
  "fromUserType": "sample string 1",
  "apiToken": "sample string 2"
}

application/xml, text/xml

Sample:
<DeleteChatGroupRM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.RequestModel">
  <APIToken>sample string 2</APIToken>
  <FromId>1</FromId>
  <FromUserType>sample string 1</FromUserType>
  <GroupId>1</GroupId>
</DeleteChatGroupRM>

multipart/form-data

Sample:
<DeleteChatGroupRM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.RequestModel"><APIToken>sample string 2</APIToken><FromId>1</FromId><FromUserType>sample string 1</FromUserType><GroupId>1</GroupId></DeleteChatGroupRM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ChatSuccessMessage
NameDescriptionTypeAdditional information
ReturnId

integer

None.

MessageCode

string

None.

Message

string

None.

Status

boolean

None.

Response Formats

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

Sample:
{
  "returnId": 1,
  "messageCode": "sample string 2",
  "message": "sample string 3",
  "status": true
}

application/xml, text/xml

Sample:
<ChatSuccessMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.DataModel">
  <Message>sample string 3</Message>
  <MessageCode>sample string 2</MessageCode>
  <ReturnId>1</ReturnId>
  <Status>true</Status>
</ChatSuccessMessage>

multipart/form-data

Sample:
<ChatSuccessMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMMS_V2.Core.DataModel"><Message>sample string 3</Message><MessageCode>sample string 2</MessageCode><ReturnId>1</ReturnId><Status>true</Status></ChatSuccessMessage>