Get Payin Methods
GEThttps://api.cleverhub.co/api/v2/payins/payin_methods
This API enables you to receive a list of all available payin methods. The app-id and secret-key will be used to determine the necessary payin methods based on the country and currency. You can configure this information in the Hello Clever Merchant Dashboard.
Responses​
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (auto)
- AUD
- PHP
- IDR
- VND
- MYR
- JPY
- USDC
- CAD
- NGN
- KES
- GHS
- ZAR
- XAF
- XOF
- BRL
- THB
Schema
records object[]
{
"records": [
{
"currency": "string",
"payin_method_name": "string"
}
]
}
AUD
{
"records": [
{
"currency": "AUD",
"payin_method_name": "au_payid_npp_aud"
}
]
}
PHP
{
"records": [
{
"currency": "PHP",
"payin_method_name": "ph_bank_maya_php"
},
{
"currency": "PHP",
"payin_method_name": "ph_ewallet_gcash_php"
},
{
"currency": "PHP",
"payin_method_name": "ph_bank_php"
}
]
}
IDR
{
"records": [
{
"currency": "IDR",
"payin_method_name": "id_bank_qris_idr"
},
{
"currency": "IDR",
"payin_method_name": "id_ewallet_dana_idr"
}
]
}
VND
{
"records": [
{
"currency": "VND",
"payin_method_name": "vn_other_vietqr_vnd"
},
{
"currency": "VND",
"payin_method_name": "vn_ewallet_momo_vnd"
},
{
"currency": "VND",
"payin_method_name": "vn_vietqr_vnd"
}
]
}
MYR
{
"records": [
{
"currency": "MYR",
"payin_method_name": "my_bank_duitnow_myr"
},
{
"currency": "MYR",
"payin_method_name": "my_bank_fpx_myr"
}
]
}
JPY
{
"records": [
{
"currency": "JPY",
"payin_method_name": "jp_bank_jpy"
}
]
}
USDC
{
"records": [
{
"currency": "USDC",
"payin_method_name": "usdc_bank"
}
]
}
CAD
{
"records": [
{
"currency": "CAD",
"payin_method_name": "ca_interac_cad"
}
]
}
NGN
{
"records": [
{
"currency": "NGN",
"payin_method_name": "ng_bank_ngn"
}
]
}
KES
{
"records": [
{
"currency": "KES",
"payin_method_name": "ke_mobile_money_kes"
}
]
}
GHS
{
"records": [
{
"currency": "GHS",
"payin_method_name": "gh_mobile_money_ghs"
}
]
}
ZAR
{
"records": [
{
"currency": "ZAR",
"payin_method_name": "sa_eft_zar"
}
]
}
XAF
{
"records": [
{
"currency": "XAF",
"payin_method_name": "cm_mobile_money_xaf"
}
]
}
XOF
{
"records": [
{
"currency": "XOF",
"payin_method_name": "ci_mobile_money_xof"
}
]
}
BRL
{
"records": [
{
"currency": "BRL",
"payin_method_name": "br_pix_brl"
}
]
}
THB
{
"records": [
{
"currency": "THB",
"payin_method_name": "th_qrpay_thb"
}
]
}
Bad Request
Unauthorized
- application/json
- Schema
- Example (auto)
- Example
Schema
errors object
{
"errors": {
"code": "string",
"message": "string"
}
}
{
"errors": {
"code": "REQUIRE_LOGIN",
"message": "Not Authorised"
}
}
Authorization: app-id
name: app-idtype: apiKeydescription: The app-id is registered and secured inside Hello Clever system and only required when client has initiated or in the middle of the transaction.in: header
name: secret-keytype: apiKeydescription: The secret-key is our client's secret of the source. Required if a publishable key is used to retrieve the source.in: header
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.cleverhub.co/api/v2/payins/payin_methods");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("app-id", "<app-id>");
request.Headers.Add("secret-key", "<app-id>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear