--- title: contest.saveDeveloperInfo description: Save developer info for telegram contest image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png redirect_from: /API_docs/methods/contest_saveDeveloperInfo.html --- # Method: contest.saveDeveloperInfo [Back to methods index](index.md) Save developer info for telegram contest ### Parameters: | Name | Type | Description | Required | |----------|---------------|-------------|----------| |vk\_id|[int](../types/int.md) | VK user ID | Yes| |name|[string](../types/string.md) | Name | Yes| |phone\_number|[string](../types/string.md) | Phone number | Yes| |age|[int](../types/int.md) | Age | Yes| |city|[string](../types/string.md) | City | Yes| ### Return type: [Bool](../types/Bool.md) ### Can bots use this method: **YES** ### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)): ```php if (!file_exists('madeline.php')) { copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php'); } include 'madeline.php'; $MadelineProto = new \danog\MadelineProto\API('session.madeline'); $MadelineProto->start(); $Bool = $MadelineProto->contest->saveDeveloperInfo(['vk_id' => int, 'name' => 'string', 'phone_number' => 'string', 'age' => int, 'city' => 'string', ]); ``` Or, if you're into Lua: ```lua Bool = contest.saveDeveloperInfo({vk_id=int, name='string', phone_number='string', age=int, city='string', }) ```