Payment Methods Endpoint
The Payment Methods endpoint allows you to retrieve the complete list of payment methods you have available for the country specified
Last updated
Was this helpful?
The Payment Methods endpoint allows you to retrieve the complete list of payment methods you have available for the country specified
Last updated
Was this helpful?
GET
https://api-stg.lime-pay.com/v3/payment_methods?country={country}
The payment_methods
endpoint will show you all the payment methods your account has enabled for the country specified as query params in the request.
It will also show details about each payment method like the payment method code
, the payment method name
, the as well as the payment method logo
and others.
country
string
Country ISO code
Authorization
string
"Bearer " + Read-Only API Key
Please find all the country codes in the section.
In order to start using the payment methods endpoint, you need to:
Send the request with GET method.
Specify a in the request as QUERY PARAMS.
Send the Authorization header with your read-only API Key as Bearer as follows:
Authorization: Bearer your_read_only_key_here
The response will return an object different for each payment method. You should be able to iterate though it no matter how many payment methods are returned.
country
String
code
String
name
String
Payment method name
type
String
status
String
Status of the payment method. It will be updated in case a payment methods becomes momentaneously unavailable
logo
String
URL containing the payment method logo
daily_average
Number
Daily average time for the approval of the deposits with this payment method in seconds. *Note that in case the method is new, we may not have daily average information so this field won't be returned
monthly_average
Number
Monthly average time for the approval of the deposits with this payment method in seconds. *Note that in case the method is new, we may not have monthly average information so this field won't be returned
We may add more fields to this response's object in the future. Please develop your integration considering that it will ignore new fields and continue working fine no matter if we add new fields.
payment_type
Description
BANK_DEPOSIT
Bank deposits
BANK_TRANSFER
Electronic Funds Transfer (TEF)
WALLET
Wallet solutions
VOUCHER
Cash solutions
MOBILE MONEY
Mobile Money Solutions
Check the Payment Methods page for the full list of payment methods.
Payment method code that should be used when creating a
Payment method type. Check the section for further details