curl --location 'https://test01-app.sipay.co.za//ccpayment/api/walletCheckout' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '```json
{
"merchant_key": "$2y$10$....",
"hash_key": "iv:salt:ciphertext__",
"invoice_id": "ORDER-2026-0001",
"total": 149.90,
"currency_code": "TRY",
"payment_service_provider": [
"apple_pay",
"google_pay"
],
"items": [
{
"name": "Premium plan",
"price": 149.90,
"quantity": 1,
"description": "Annual premium subscription"
}
],
"name": "Mehmet",
"surname": "Yilmaz",
"bill_email": "mehmet@example.com",
"bill_address1": "Levent Mah. No:1",
"bill_city": "Istanbul",
"bill_country": "TR",
"bill_phone": "5551112233"
}
```'