phone.SendSignalingData

class pyrogram.raw.functions.phone.SendSignalingData

Send VoIP signaling data

Details:
  • Layer: 223

  • ID: FF7A9383

Parameters:
  • peer (InputPhoneCall) – Phone call

  • data (bytes) – Signaling payload

Returns:

bool

TL Schema

phone.sendSignalingData#ff7a9383
peer:InputPhoneCall
data:bytes

= Bool

Parameter Tree

SendSignalingData
├── peerInputPhoneCall
│ └── InputPhoneCall
│ ├── idlong
│ └── access_hashlong
└── databytes

Example

await app.invoke(
    SendSignalingData(
        peer=InputPhoneCall(
            id=0,
            access_hash=0
        ),
        data=b"data",
    )
)