messages.DeletePhoneCallHistory

class pyrogram.raw.functions.messages.DeletePhoneCallHistory

Delete the entire phone call history.

Details:
  • Layer: 223

  • ID: F9CBE409

Parameters:

revoke (bool, optional) – Whether to remove phone call history for participants as well

Returns:

messages.AffectedFoundMessages

TL Schema

messages.deletePhoneCallHistory#f9cbe409
flags:#
revoke:flags.0?true

= messages.AffectedFoundMessages

Parameter Tree

DeletePhoneCallHistory
└── revoketrue (optional)

Example

await app.invoke(
    DeletePhoneCallHistory(
        revoke=None,
    )
)