Link Search Menu Expand Document

Method: account.updateBusinessLocation

Back to methods index

Businesses » may advertise their location using this method, see here » for more info.

To remove business location information invoke the method without setting any of the parameters.

Parameters:

NameTypeDescriptionRequired
geo_pointInputGeoPointOptional, contains a set of geographical coordinates.Optional
addressstringMandatory when setting/updating the location, contains a textual description of the address (max 96 UTF-8 chars).Optional

Return type: Bool

Can userbots use this method: YES

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

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->account->updateBusinessLocation(geo_point: $InputGeoPoint, address: 'string', );