auth.ReportMissingCode

class pyrogram.raw.functions.auth.ReportMissingCode

Official apps only, reports that the SMS authentication code wasn’t delivered.

Details:
  • Layer: 223

  • ID: CB9DEFF6

Parameters:
  • phone_number (str) – Phone number where we were supposed to receive the code

  • phone_code_hash (str) – The phone code hash obtained from auth.sendCode

  • mnc (str) – MNC of the current network operator.

Returns:

bool

TL Schema

auth.reportMissingCode#cb9deff6
phone_number:string
phone_code_hash:string
mnc:string

= Bool

Parameter Tree

ReportMissingCode
├── phone_numberstring
├── phone_code_hashstring
└── mncstring

Example

await app.invoke(
    ReportMissingCode(
        phone_number="text",
        phone_code_hash="text",
        mnc="text",
    )
)