# Nigeria

Supported Payment Methods


| Payment Method     | Supported Currencies | Minimum Payout Amount | Maximum Payout Amount |
| ------------ | -------- | ------------------- | ------------------- |
| Bank account | NGN      | 2,000.00 NGN          | 500,000.00 NGN      |

# Bank account

## Request Example:

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

```JSON
{
    "payment_amount": 400000,
    "source_amount": 400000,
    "payment_currency": "NGN",
    "source_currency": "NGN",
    "beneficiary_data": {
        "destination_data": {
            "destination_type": "bank_account",
            "bank_account": {
                "account_number": "2121562123",
                "account_holder_name": "JOHN DOE",
                "bank_name":"Access Bank",                
                "country": "ng",
            }
        }
    }
}
```
List of Nigerian Banks

| Bank Name                   |
| --------------------------- |
| Access Bank                 |
| Zenith Bank PLC             |
| First Bank PLC              |
| United Bank for Africa      |
| Guaranty Trust Bank         |
| Stanbic IBTC Bank           |
| Fidelity Bank               |
| First City Monument Bank    |
| Union Bank                  |
| EcoBank PLC                 |
| Sterling Bank PLC           |
| Wema Bank PLC               |
| Polaris Bank                |
| Keystone Bank               |
| Unity Bank                  |
| Standard Chartered Bank PLC |
| Citi Bank                   |
| Providus Bank               |
| Globus Bank                 |
| Kuda Bank                   |
| NPF Micro-finance Bank      |
| Coronation Merchant Bank    |

 

# **Retrieve a Payout**

[Retrieve a Payout](api-215991524)

GET：/v1/payouts/{id}

# Webhook 

**[Create Webhook](/api-215991501)**

**POST：/v1/webhook_endpoints**

```JSON
{
    "url": "https://...", //用于接收Webhook的url
    "description": "I am description",
    "enabled_events": [
        "payout.canceled",
        "payout.created",
        "payout.failed",
        "payout.paid",
        "payout.updated"
    ]
}
```

- Once a webhook is successfully registered, an HTTPS request will be automatically sent to the registered URL whenever any of the specified events occur.

## Test Webhook

Create a payout to trigger the`payout.created`event. This will send a callback notification about the payout creation event to your designated Webhook URL.
