POST api/SendSupportMessage
Request Information
URI Parameters
None.
Body Parameters
RequestSendTextMessage| Name | Description | Type | Additional 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:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>