This commit is contained in:
Daniil Gentili 2017-07-23 16:40:54 +02:00
parent a90d7a9ae4
commit ecc73b0a9e
3354 changed files with 6708 additions and 10062 deletions

View File

@ -47,7 +47,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.changePhone
* params - {"phone_number": "string", "phone_code_hash": "string", "phone_code": "string", }
* params - `{"phone_number": "string", "phone_code_hash": "string", "phone_code": "string", }`
@ -57,12 +57,11 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.changePhone`
Parameters:
```
phone_number - Json encoded string
phone_code_hash - Json encoded string
phone_code - Json encoded string
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.checkUsername
* params - {"username": "string", }
* params - `{"username": "string", }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.checkUsername`
Parameters:
```
username - Json encoded string
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.confirmPhone
* params - {"phone_code_hash": "string", "phone_code": "string", }
* params - `{"phone_code_hash": "string", "phone_code": "string", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.confirmPhone`
Parameters:
```
phone_code_hash - Json encoded string
phone_code - Json encoded string
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.deleteAccount
* params - {"reason": "string", }
* params - `{"reason": "string", }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.deleteAccount`
Parameters:
```
reason - Json encoded string
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.getAccountTTL
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getAccountTTL`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.getAuthorizations
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getAuthorizations`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.getNotifySettings
* params - {"peer": InputNotifyPeer, }
* params - `{"peer": InputNotifyPeer, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getNotifySettings`
Parameters:
```
peer - Json encoded InputNotifyPeer
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.getPassword
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getPassword`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.getPasswordSettings
* params - {"current_password_hash": "bytes", }
* params - `{"current_password_hash": "bytes", }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getPasswordSettings`
Parameters:
```
current_password_hash - Json encoded bytes
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.getPrivacy
* params - {"key": InputPrivacyKey, }
* params - `{"key": InputPrivacyKey, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getPrivacy`
Parameters:
```
key - Json encoded InputPrivacyKey
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.getTmpPassword
* params - {"password_hash": "bytes", "period": int, }
* params - `{"password_hash": "bytes", "period": int, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getTmpPassword`
Parameters:
```
password_hash - Json encoded bytes
period - Json encoded int
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.getWallPapers
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.getWallPapers`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.registerDevice
* params - {"token_type": int, "token": "string", }
* params - `{"token_type": int, "token": "string", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.registerDevice`
Parameters:
```
token_type - Json encoded int
token - Json encoded string
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.reportPeer
* params - {"peer": InputPeer, "reason": ReportReason, }
* params - `{"peer": InputPeer, "reason": ReportReason, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.reportPeer`
Parameters:
```
peer - Json encoded InputPeer
reason - Json encoded ReportReason
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.resetAuthorization
* params - {"hash": long, }
* params - `{"hash": long, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.resetAuthorization`
Parameters:
```
hash - Json encoded long
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.resetNotifySettings
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.resetNotifySettings`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -47,7 +47,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.sendChangePhoneCode
* params - {"allow_flashcall": Bool, "phone_number": "string", "current_number": Bool, }
* params - `{"allow_flashcall": Bool, "phone_number": "string", "current_number": Bool, }`
@ -57,12 +57,11 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.sendChangePhoneCode`
Parameters:
```
allow_flashcall - Json encoded Bool
phone_number - Json encoded string
current_number - Json encoded Bool
```
Or, if you're into Lua:

View File

@ -47,7 +47,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.sendConfirmPhoneCode
* params - {"allow_flashcall": Bool, "hash": "string", "current_number": Bool, }
* params - `{"allow_flashcall": Bool, "hash": "string", "current_number": Bool, }`
@ -57,12 +57,11 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.sendConfirmPhoneCode`
Parameters:
```
allow_flashcall - Json encoded Bool
hash - Json encoded string
current_number - Json encoded Bool
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.setAccountTTL
* params - {"ttl": AccountDaysTTL, }
* params - `{"ttl": AccountDaysTTL, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.setAccountTTL`
Parameters:
```
ttl - Json encoded AccountDaysTTL
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.setPrivacy
* params - {"key": InputPrivacyKey, "rules": [InputPrivacyRule], }
* params - `{"key": InputPrivacyKey, "rules": [InputPrivacyRule], }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.setPrivacy`
Parameters:
```
key - Json encoded InputPrivacyKey
rules - Json encoded array of InputPrivacyRule
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.unregisterDevice
* params - {"token_type": int, "token": "string", }
* params - `{"token_type": int, "token": "string", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.unregisterDevice`
Parameters:
```
token_type - Json encoded int
token - Json encoded string
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.updateDeviceLocked
* params - {"period": int, }
* params - `{"period": int, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.updateDeviceLocked`
Parameters:
```
period - Json encoded int
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.updateNotifySettings
* params - {"peer": InputNotifyPeer, "settings": InputPeerNotifySettings, }
* params - `{"peer": InputNotifyPeer, "settings": InputPeerNotifySettings, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.updateNotifySettings`
Parameters:
```
peer - Json encoded InputNotifyPeer
settings - Json encoded InputPeerNotifySettings
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.updatePasswordSettings
* params - {"current_password_hash": "bytes", "new_settings": account_PasswordInputSettings, }
* params - `{"current_password_hash": "bytes", "new_settings": account_PasswordInputSettings, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.updatePasswordSetting
Parameters:
```
current_password_hash - Json encoded bytes
new_settings - Json encoded account_PasswordInputSettings
```
Or, if you're into Lua:

View File

@ -47,7 +47,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.updateProfile
* params - {"first_name": "string", "last_name": "string", "about": "string", }
* params - `{"first_name": "string", "last_name": "string", "about": "string", }`
@ -57,12 +57,11 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.updateProfile`
Parameters:
```
first_name - Json encoded string
last_name - Json encoded string
about - Json encoded string
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.updateStatus
* params - {"offline": Bool, }
* params - `{"offline": Bool, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.updateStatus`
Parameters:
```
offline - Json encoded Bool
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - account.updateUsername
* params - {"username": "string", }
* params - `{"username": "string", }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/account.updateUsername`
Parameters:
```
username - Json encoded string
```
Or, if you're into Lua:

View File

@ -48,7 +48,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.bindTempAuthKey
* params - {"perm_auth_key_id": long, "nonce": long, "expires_at": int, "encrypted_message": "bytes", }
* params - `{"perm_auth_key_id": long, "nonce": long, "expires_at": int, "encrypted_message": "bytes", }`
@ -58,13 +58,12 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.bindTempAuthKey`
Parameters:
```
perm_auth_key_id - Json encoded long
nonce - Json encoded long
expires_at - Json encoded int
encrypted_message - Json encoded bytes
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.cancelCode
* params - {"phone_number": "string", "phone_code_hash": "string", }
* params - `{"phone_number": "string", "phone_code_hash": "string", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.cancelCode`
Parameters:
```
phone_number - Json encoded string
phone_code_hash - Json encoded string
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.checkPassword
* params - {"password_hash": "bytes", }
* params - `{"password_hash": "bytes", }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.checkPassword`
Parameters:
```
password_hash - Json encoded bytes
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.checkPhone
* params - {"phone_number": "string", }
* params - `{"phone_number": "string", }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.checkPhone`
Parameters:
```
phone_number - Json encoded string
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.dropTempAuthKeys
* params - {"except_auth_keys": [long], }
* params - `{"except_auth_keys": [long], }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.dropTempAuthKeys`
Parameters:
```
except_auth_keys - Json encoded array of long
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.exportAuthorization
* params - {"dc_id": int, }
* params - `{"dc_id": int, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.exportAuthorization`
Parameters:
```
dc_id - Json encoded int
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.importAuthorization
* params - {"id": int, "bytes": "bytes", }
* params - `{"id": int, "bytes": "bytes", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.importAuthorization`
Parameters:
```
id - Json encoded int
bytes - Json encoded bytes
```
Or, if you're into Lua:

View File

@ -47,7 +47,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.importBotAuthorization
* params - {"api_id": int, "api_hash": "string", "bot_auth_token": "string", }
* params - `{"api_id": int, "api_hash": "string", "bot_auth_token": "string", }`
@ -57,12 +57,11 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.importBotAuthorization`
Parameters:
```
api_id - Json encoded int
api_hash - Json encoded string
bot_auth_token - Json encoded string
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.logOut
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.logOut`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.recoverPassword
* params - {"code": "string", }
* params - `{"code": "string", }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.recoverPassword`
Parameters:
```
code - Json encoded string
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.requestPasswordRecovery
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.requestPasswordRecovery`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.resendCode
* params - {"phone_number": "string", "phone_code_hash": "string", }
* params - `{"phone_number": "string", "phone_code_hash": "string", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.resendCode`
Parameters:
```
phone_number - Json encoded string
phone_code_hash - Json encoded string
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.resetAuthorizations
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.resetAuthorizations`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -49,7 +49,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.sendCode
* params - {"allow_flashcall": Bool, "phone_number": "string", "current_number": Bool, "api_id": int, "api_hash": "string", }
* params - `{"allow_flashcall": Bool, "phone_number": "string", "current_number": Bool, "api_id": int, "api_hash": "string", }`
@ -59,14 +59,13 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.sendCode`
Parameters:
```
allow_flashcall - Json encoded Bool
phone_number - Json encoded string
current_number - Json encoded Bool
api_id - Json encoded int
api_hash - Json encoded string
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.sendInvites
* params - {"phone_numbers": ["string"], "message": "string", }
* params - `{"phone_numbers": ["string"], "message": "string", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.sendInvites`
Parameters:
```
phone_numbers - Json encoded array of string
message - Json encoded string
```
Or, if you're into Lua:

View File

@ -47,7 +47,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.signIn
* params - {"phone_number": "string", "phone_code_hash": "string", "phone_code": "string", }
* params - `{"phone_number": "string", "phone_code_hash": "string", "phone_code": "string", }`
@ -57,12 +57,11 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.signIn`
Parameters:
```
phone_number - Json encoded string
phone_code_hash - Json encoded string
phone_code - Json encoded string
```
Or, if you're into Lua:

View File

@ -49,7 +49,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - auth.signUp
* params - {"phone_number": "string", "phone_code_hash": "string", "phone_code": "string", "first_name": "string", "last_name": "string", }
* params - `{"phone_number": "string", "phone_code_hash": "string", "phone_code": "string", "first_name": "string", "last_name": "string", }`
@ -59,14 +59,13 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.signUp`
Parameters:
```
phone_number - Json encoded string
phone_code_hash - Json encoded string
phone_code - Json encoded string
first_name - Json encoded string
last_name - Json encoded string
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - bots.answerWebhookJSONQuery
* params - {"query_id": long, "data": DataJSON, }
* params - `{"query_id": long, "data": DataJSON, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/bots.answerWebhookJSONQuery`
Parameters:
```
query_id - Json encoded long
data - Json encoded DataJSON
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - bots.sendCustomRequest
* params - {"custom_method": "string", "params": DataJSON, }
* params - `{"custom_method": "string", "params": DataJSON, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/bots.sendCustomRequest`
Parameters:
```
custom_method - Json encoded string
params - Json encoded DataJSON
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.checkUsername
* params - {"channel": InputChannel, "username": "string", }
* params - `{"channel": InputChannel, "username": "string", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.checkUsername`
Parameters:
```
channel - Json encoded InputChannel
username - Json encoded string
```
Or, if you're into Lua:

View File

@ -48,7 +48,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.createChannel
* params - {"broadcast": Bool, "megagroup": Bool, "title": "string", "about": "string", }
* params - `{"broadcast": Bool, "megagroup": Bool, "title": "string", "about": "string", }`
@ -58,13 +58,12 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.createChannel`
Parameters:
```
broadcast - Json encoded Bool
megagroup - Json encoded Bool
title - Json encoded string
about - Json encoded string
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.deleteChannel
* params - {"channel": InputChannel, }
* params - `{"channel": InputChannel, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.deleteChannel`
Parameters:
```
channel - Json encoded InputChannel
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.deleteMessages
* params - {"channel": InputChannel, "id": [int], }
* params - `{"channel": InputChannel, "id": [int], }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.deleteMessages`
Parameters:
```
channel - Json encoded InputChannel
id - Json encoded array of int
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.deleteUserHistory
* params - {"channel": InputChannel, "user_id": InputUser, }
* params - `{"channel": InputChannel, "user_id": InputUser, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.deleteUserHistory`
Parameters:
```
channel - Json encoded InputChannel
user_id - Json encoded InputUser
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.editAbout
* params - {"channel": InputChannel, "about": "string", }
* params - `{"channel": InputChannel, "about": "string", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.editAbout`
Parameters:
```
channel - Json encoded InputChannel
about - Json encoded string
```
Or, if you're into Lua:

View File

@ -47,7 +47,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.editAdmin
* params - {"channel": InputChannel, "user_id": InputUser, "admin_rights": ChannelAdminRights, }
* params - `{"channel": InputChannel, "user_id": InputUser, "admin_rights": ChannelAdminRights, }`
@ -57,12 +57,11 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.editAdmin`
Parameters:
```
channel - Json encoded InputChannel
user_id - Json encoded InputUser
admin_rights - Json encoded ChannelAdminRights
```
Or, if you're into Lua:

View File

@ -47,7 +47,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.editBanned
* params - {"channel": InputChannel, "user_id": InputUser, "banned_rights": ChannelBannedRights, }
* params - `{"channel": InputChannel, "user_id": InputUser, "banned_rights": ChannelBannedRights, }`
@ -57,12 +57,11 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.editBanned`
Parameters:
```
channel - Json encoded InputChannel
user_id - Json encoded InputUser
banned_rights - Json encoded ChannelBannedRights
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.editPhoto
* params - {"channel": InputChannel, "photo": InputChatPhoto, }
* params - `{"channel": InputChannel, "photo": InputChatPhoto, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.editPhoto`
Parameters:
```
channel - Json encoded InputChannel
photo - Json encoded InputChatPhoto
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.editTitle
* params - {"channel": InputChannel, "title": "string", }
* params - `{"channel": InputChannel, "title": "string", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.editTitle`
Parameters:
```
channel - Json encoded InputChannel
title - Json encoded string
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.exportInvite
* params - {"channel": InputChannel, }
* params - `{"channel": InputChannel, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.exportInvite`
Parameters:
```
channel - Json encoded InputChannel
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.exportMessageLink
* params - {"channel": InputChannel, "id": int, }
* params - `{"channel": InputChannel, "id": int, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.exportMessageLink`
Parameters:
```
channel - Json encoded InputChannel
id - Json encoded int
```
Or, if you're into Lua:

View File

@ -51,7 +51,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.getAdminLog
* params - {"channel": InputChannel, "q": "string", "events_filter": ChannelAdminLogEventsFilter, "admins": [InputUser], "max_id": long, "min_id": long, "limit": int, }
* params - `{"channel": InputChannel, "q": "string", "events_filter": ChannelAdminLogEventsFilter, "admins": [InputUser], "max_id": long, "min_id": long, "limit": int, }`
@ -61,7 +61,6 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.getAdminLog`
Parameters:
```
channel - Json encoded InputChannel
q - Json encoded string
events_filter - Json encoded ChannelAdminLogEventsFilter
@ -70,7 +69,7 @@ max_id - Json encoded long
min_id - Json encoded long
limit - Json encoded int
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.getAdminedPublicChannels
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.getAdminedPublicChan
Parameters:
```
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.getChannels
* params - {"id": [InputChannel], }
* params - `{"id": [InputChannel], }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.getChannels`
Parameters:
```
id - Json encoded array of InputChannel
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.getFullChannel
* params - {"channel": InputChannel, }
* params - `{"channel": InputChannel, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.getFullChannel`
Parameters:
```
channel - Json encoded InputChannel
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.getMessages
* params - {"channel": InputChannel, "id": [int], }
* params - `{"channel": InputChannel, "id": [int], }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.getMessages`
Parameters:
```
channel - Json encoded InputChannel
id - Json encoded array of int
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.getParticipant
* params - {"channel": InputChannel, "user_id": InputUser, }
* params - `{"channel": InputChannel, "user_id": InputUser, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.getParticipant`
Parameters:
```
channel - Json encoded InputChannel
user_id - Json encoded InputUser
```
Or, if you're into Lua:

View File

@ -48,7 +48,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.getParticipants
* params - {"channel": InputChannel, "filter": ChannelParticipantsFilter, "offset": int, "limit": int, }
* params - `{"channel": InputChannel, "filter": ChannelParticipantsFilter, "offset": int, "limit": int, }`
@ -58,13 +58,12 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.getParticipants`
Parameters:
```
channel - Json encoded InputChannel
filter - Json encoded ChannelParticipantsFilter
offset - Json encoded int
limit - Json encoded int
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.inviteToChannel
* params - {"channel": InputChannel, "users": [InputUser], }
* params - `{"channel": InputChannel, "users": [InputUser], }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.inviteToChannel`
Parameters:
```
channel - Json encoded InputChannel
users - Json encoded array of InputUser
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.joinChannel
* params - {"channel": InputChannel, }
* params - `{"channel": InputChannel, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.joinChannel`
Parameters:
```
channel - Json encoded InputChannel
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.leaveChannel
* params - {"channel": InputChannel, }
* params - `{"channel": InputChannel, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.leaveChannel`
Parameters:
```
channel - Json encoded InputChannel
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.readHistory
* params - {"channel": InputChannel, "max_id": int, }
* params - `{"channel": InputChannel, "max_id": int, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.readHistory`
Parameters:
```
channel - Json encoded InputChannel
max_id - Json encoded int
```
Or, if you're into Lua:

View File

@ -47,7 +47,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.reportSpam
* params - {"channel": InputChannel, "user_id": InputUser, "id": [int], }
* params - `{"channel": InputChannel, "user_id": InputUser, "id": [int], }`
@ -57,12 +57,11 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.reportSpam`
Parameters:
```
channel - Json encoded InputChannel
user_id - Json encoded InputUser
id - Json encoded array of int
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.toggleInvites
* params - {"channel": InputChannel, "enabled": Bool, }
* params - `{"channel": InputChannel, "enabled": Bool, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.toggleInvites`
Parameters:
```
channel - Json encoded InputChannel
enabled - Json encoded Bool
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.toggleSignatures
* params - {"channel": InputChannel, "enabled": Bool, }
* params - `{"channel": InputChannel, "enabled": Bool, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.toggleSignatures`
Parameters:
```
channel - Json encoded InputChannel
enabled - Json encoded Bool
```
Or, if you're into Lua:

View File

@ -47,7 +47,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.updatePinnedMessage
* params - {"silent": Bool, "channel": InputChannel, "id": int, }
* params - `{"silent": Bool, "channel": InputChannel, "id": int, }`
@ -57,12 +57,11 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.updatePinnedMessage`
Parameters:
```
silent - Json encoded Bool
channel - Json encoded InputChannel
id - Json encoded int
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - channels.updateUsername
* params - {"channel": InputChannel, "username": "string", }
* params - `{"channel": InputChannel, "username": "string", }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.updateUsername`
Parameters:
```
channel - Json encoded InputChannel
username - Json encoded string
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.block
* params - {"id": InputUser, }
* params - `{"id": InputUser, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.block`
Parameters:
```
id - Json encoded InputUser
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.deleteContact
* params - {"id": InputUser, }
* params - `{"id": InputUser, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.deleteContact`
Parameters:
```
id - Json encoded InputUser
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.deleteContacts
* params - {"id": [InputUser], }
* params - `{"id": [InputUser], }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.deleteContacts`
Parameters:
```
id - Json encoded array of InputUser
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.exportCard
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.exportCard`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.getBlocked
* params - {"offset": int, "limit": int, }
* params - `{"offset": int, "limit": int, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.getBlocked`
Parameters:
```
offset - Json encoded int
limit - Json encoded int
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.getContacts
* params - {"hash": "string", }
* params - `{"hash": "string", }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.getContacts`
Parameters:
```
hash - Json encoded string
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.getStatuses
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.getStatuses`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -53,7 +53,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.getTopPeers
* params - {"correspondents": Bool, "bots_pm": Bool, "bots_inline": Bool, "phone_calls": Bool, "groups": Bool, "channels": Bool, "offset": int, "limit": int, "hash": int, }
* params - `{"correspondents": Bool, "bots_pm": Bool, "bots_inline": Bool, "phone_calls": Bool, "groups": Bool, "channels": Bool, "offset": int, "limit": int, "hash": int, }`
@ -63,7 +63,6 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.getTopPeers`
Parameters:
```
correspondents - Json encoded Bool
bots_pm - Json encoded Bool
bots_inline - Json encoded Bool
@ -74,7 +73,7 @@ offset - Json encoded int
limit - Json encoded int
hash - Json encoded int
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.importCard
* params - {"export_card": [int], }
* params - `{"export_card": [int], }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.importCard`
Parameters:
```
export_card - Json encoded array of int
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.importContacts
* params - {"contacts": [InputContact], "replace": Bool, }
* params - `{"contacts": [InputContact], "replace": Bool, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.importContacts`
Parameters:
```
contacts - Json encoded array of InputContact
replace - Json encoded Bool
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.resetTopPeerRating
* params - {"category": TopPeerCategory, "peer": InputPeer, }
* params - `{"category": TopPeerCategory, "peer": InputPeer, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.resetTopPeerRating`
Parameters:
```
category - Json encoded TopPeerCategory
peer - Json encoded InputPeer
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.resolveUsername
* params - {"username": "string", }
* params - `{"username": "string", }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.resolveUsername`
Parameters:
```
username - Json encoded string
```
Or, if you're into Lua:

View File

@ -46,7 +46,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.search
* params - {"q": "string", "limit": int, }
* params - `{"q": "string", "limit": int, }`
@ -56,11 +56,10 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.search`
Parameters:
```
q - Json encoded string
limit - Json encoded int
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contacts.unblock
* params - {"id": InputUser, }
* params - `{"id": InputUser, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contacts.unblock`
Parameters:
```
id - Json encoded InputUser
```
Or, if you're into Lua:

View File

@ -49,7 +49,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contest.saveDeveloperInfo
* params - {"vk_id": int, "name": "string", "phone_number": "string", "age": int, "city": "string", }
* params - `{"vk_id": int, "name": "string", "phone_number": "string", "age": int, "city": "string", }`
@ -59,14 +59,13 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/contest.saveDeveloperInfo`
Parameters:
```
vk_id - Json encoded int
name - Json encoded string
phone_number - Json encoded string
age - Json encoded int
city - Json encoded string
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - destroy_auth_key
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/destroy_auth_key`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - destroy_session
* params - {"session_id": long, }
* params - `{"session_id": long, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/destroy_session`
Parameters:
```
session_id - Json encoded long
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - get_future_salts
* params - {"num": int, }
* params - `{"num": int, }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/get_future_salts`
Parameters:
```
num - Json encoded int
```
Or, if you're into Lua:

View File

@ -45,7 +45,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - help.getAppChangelog
* params - {"prev_app_version": "string", }
* params - `{"prev_app_version": "string", }`
@ -55,10 +55,9 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/help.getAppChangelog`
Parameters:
```
prev_app_version - Json encoded string
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - help.getAppUpdate
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/help.getAppUpdate`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - help.getCdnConfig
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/help.getCdnConfig`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - help.getConfig
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/help.getConfig`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - help.getInviteText
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/help.getInviteText`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - help.getNearestDc
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/help.getNearestDc`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - help.getSupport
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/help.getSupport`
Parameters:
```
```
Or, if you're into Lua:

View File

@ -40,7 +40,7 @@ POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - help.getTermsOfService
* params - {}
* params - `{}`
@ -50,9 +50,8 @@ POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/help.getTermsOfService`
Parameters:
```
```
Or, if you're into Lua:

Some files were not shown because too many files have changed in this diff Show More