---
title: "GKash payment webview redirect page"
method: GET
path: "/payment/gkash/webview"
tags: ["payment"]
---

# GKash payment webview redirect page

`GET /payment/gkash/webview`

Returns an HTML page that automatically submits payment form to GKash. 
    Designed for Flutter mobile apps to load in a webview. The page will auto-redirect to GKash payment page.
    
    **Usage in Flutter:**
    ```dart
    // Create payment first via POST /payment/gkash/create
    // Then load this URL in webview:
    WebView(
      initialUrl: 'https://your-api.com/payment/gkash/webview?refNo=YOUR_REF_NO',
    )
    ```
    
    **Query Parameters:**
    - refNo (required): Payment reference number from create payment response
    - OR provide all payment parameters to create payment on-the-fly

## Query parameters

- `refNo` string
- `transactionType` string
- `amount` string
- `currency` string, required
- `prodDesc` string, required
- `userName` string, required
- `userEmail` string, required
- `userContact` string, required
- `recurringType` string, required
- `memberID` string, required
- `returnUrl` string, required
- `callbackUrl` string, required
- `v_billemail` string
- `v_billphone` string

## Response `200`

HTML page that auto-submits to GKash payment form

---

[API](https://skmtc.dev/tonewow/apis/tonewow-database-api.md) · [All operations](https://skmtc.dev/tonewow/apis/tonewow-database-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tonewow/tonewow-database-api/revisions/f36472974ad4/schema)
