POST api/SendSupportMessage

Request Information

URI Parameters

None.

Body Parameters

RequestSendTextMessage
NameDescriptionTypeAdditional information
token string

None.

project string

None.

telegramMsg string

None.

telegramId integer

None.

telegramToken string

None.

Request Formats

application/json, text/json

Sample:
{
  "token": "sample string 1",
  "project": "sample string 2",
  "telegramMsg": "sample string 3",
  "telegramId": 4,
  "telegramToken": "sample string 5"
}

application/xml, text/xml

Sample:
<RequestSendTextMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TelegramBotProxy.Models">
  <project>sample string 2</project>
  <telegramId>4</telegramId>
  <telegramMsg>sample string 3</telegramMsg>
  <telegramToken>sample string 5</telegramToken>
  <token>sample string 1</token>
</RequestSendTextMessage>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'RequestSendTextMessage'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>