UploadRingtoneRequest
Both users and bots may be able to use this method. See code examples.
---functions--- account.uploadRingtone#831a83a2 file:InputFile file_name:string mime_type:string = Document
Returns
| Document |
This type can be an instance of either:
| Document | DocumentEmpty |
Parameters
| file | InputFile | |
| file_name | string | |
| mime_type | string |
Known RPC errors
This request can't cause any RPC error as far as we know.
Example
from telethon.sync import TelegramClient
from telethon import functions, types
with TelegramClient(name, api_id, api_hash) as client:
result = client(functions.account.UploadRingtoneRequest(
file=client.upload_file('/path/to/file.jpg'),
file_name='some string here',
mime_type='some string here'
))
print(result.stringify())