# Pakistan

Supported Payment Methods


| Payment Method     | Supported Currencies| Max daily amount | 
| ------------ | -------- | ------------------- |
| Mobile money | PKR      |  25,000.00 PKR

# Mobile money

## Request Example:

The following example shows the minimum parameter set. For parameter details, refer to：[Create a Payout](api-42628142)
### javazzcash：

```JSON
{
    "payment_amount": 1000,
    "payment_currency": "PKR",
    "source_currency": "PKR",
    "beneficiary_data": {
        "nickname": "test1",
        "destination_data": {
            "destination_type": "jazzcash",
            "jazzcash": {
                "account_number": "03079770870",
                "name": "John Doe",
                "phone_number": "923000000000",
                "email": "test@qq.com",
                "dob": "1989-12-19",
                "gender": "MALE"
            }
        }
    }
}
```
### Easypaisa：

```JSON
{
    "payment_amount": 1100,
    "payment_currency": "PKR",
    "source_currency": "PKR",
    "beneficiary_data": {
        "nickname": "test1",
        "destination_data": {
            "destination_type": "easypaisa",
            "easypaisa": {
                "account_number": "03331310876",
                "name": "John Doe",
                "phone_number": "923000000000",
                "email": "test@qq.com",
                "dob": "1989-12-19",
                "gender": "MALE",
                 "certificate": {
                    "certificate_type":"cnic",
                    "certificate_number":"9105160596211"
            }
        }
    }
}
```

