From 349eebf8bc9a3b3933f482db0c526f74287dff4f Mon Sep 17 00:00:00 2001 From: muhamad Date: Mon, 10 Mar 2025 13:05:16 +0300 Subject: [PATCH] Update README with new payment parameters --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ca2e0d..1fe8f66 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,8 @@ issuing a refund, and canceling a payment. async with FIBPaymentsClient(config) as client: try: # Create a payment - payment = await client.create_payment(100.00, description="Test payment") + payment = await client.create_payment(100.00, currency="USD", callback_url="https://example.com/callback", description="Test payment", redirect_uri="https://example.com/redirect") + payment_details = { 'fib_payment_id': payment['paymentId'], 'readable_code': payment['readableCode'],