MadelineProtoDocs/old_docs/API_docs_v30/methods/contacts.deleteByPhones.md

1.1 KiB

title description image redirect_from
contacts.deleteByPhones Delete contacts by phone number https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/contacts_deleteByPhones.html

Method: contacts.deleteByPhones

Back to methods index

Delete contacts by phone number

Parameters:

Name Type Description Required
phones Array of string Phone numbers Yes

Return type: Bool

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->contacts->deleteByPhones(['phones' => ['string', 'string'], ]);

Or, if you're into Lua:

Bool = contacts.deleteByPhones({phones={'string'}, })