Post

Send Invoice

Client.send_invoice()

فرستادن صورتحساب

Parameters

  • chat_id (int | str)

    آیدی چتی که صورتحساب به آن فرستاده میشود

  • title (str)

    عنوان صورتحساب

  • description (str)

    توضیحات صورتحساب

  • provider_token (str)

    شماره کارت شماره کیف پول بله یا شماره درگاه و شماره پذیرنده که پول را دریافت میکند

  • prices (list[LabeledPrice])

    لیست قیمت های برچسب دار

  • provider_data (str)
  • photo_url (str)
  • photo_size (int)
  • photo_width (int)
  • photo_height (int)
  • need_phone_number (bool)
  • need_shipping_address (bool)
  • disable_notification (bool)
  • reply_to_message_id (int | str)
  • reply_markup (ReplyMarkup)

Returns

Message

Example

1
2
3
4
5
6
7
await bot.send_invoice(
        1234567890,
        "Some title",
        "Some description",
        "6037************",
        LabeledPrice(label="Some label", amount=1000000)
    )
This post is licensed under CC BY 4.0 by the author.