LogoLogo
Document ValidationsPayment Methods
  • Welcome to LimePay API Docs
  • Getting Started with Lime-Pay
  • API Documentation
    • Deposits API
      • Technical and Security Aspects
        • Calculating the Signature
      • Endpoints
        • Deposit Creation Endpoint
          • Notifications
        • Deposit Status Endpoint
        • Payment Methods Endpoint
        • Currency Exchange Endpoint
        • Refund Creation Endpoint
          • Notifications
        • Refund Status Endpoint
      • Payment Methods
        • 🌍Africa
          • 🇧🇯Benin
          • 🇧🇼Botswana
          • 🇨🇲Cameroon
          • 🇨🇬Congo Brazzaville
          • 🇨🇩Congo DRC
          • 🇪🇬Egypt
          • 🇬🇦Gabon
          • 🇬🇭Ghana
          • 🇨🇮Ivory coast
          • 🇰🇪Kenya
          • 🇲🇼Malawi
          • 🇲🇱Mali
          • 🇳🇬Nigeria
          • 🇷🇼Rwanda
          • 🇿🇦South Africa
          • 🇸🇱Sierra leone
          • 🇹🇿Tanzania
          • 🇹🇬Togo
          • 🇺🇬Uganda
          • 🇿🇲Zambia
        • 🌏Asia
          • 🇧🇩Bangladesh
          • 🇨🇳China
          • 🇭🇰Hong Kong
          • 🇮🇳India
          • 🇮🇩Indonesia
          • 🇯🇵Japan
          • 🇲🇾Malaysia
          • 🇵🇰Pakistan
          • 🇹🇭Thailand
          • 🇹🇷Turkey
          • 🇻🇳Vietnam
      • API Codes
    • Cashouts API
      • Technical and Security Aspects
        • Calculating the Payload-Signature
      • Endpoints
        • Cashout Creation Endpoint
          • Notifications
        • Cashout Status Endpoint
        • Cashout Update Status Endpoint
        • Cashout Cancellation Endpoint
        • Cashout Bank Codes
      • Countries Validations
        • 🌍African Countries
          • 🇧🇼Botswana
          • 🇨🇲Cameroon
          • 🇨🇬Congo Brazzaville
          • 🇨🇩Congo DRC
          • 🇪🇬Egypt
          • 🇬🇭Ghana
          • 🇨🇮Ivory Coast
          • 🇰🇪Kenya
          • 🇲🇼Malawi
          • 🇳🇬Nigeria
          • 🇷🇼Rwanda
          • 🇿🇦South Africa
          • 🇿🇲Zambia
          • 🇬🇦Gabon
          • 🇸🇱Sierra Leone
        • 🌏Asian Countries
          • 🇧🇩Bangladesh
          • 🇨🇳China
          • 🇮🇳India
          • 🇮🇩Indonesia
          • 🇯🇵Japan
          • 🇲🇾Malaysia
          • 🇹🇭Thailand
          • 🇹🇷Turkey
          • 🇻🇳Vietnam
          • 🇵🇰Pakistan
      • API Codes
    • Reconciliation API
      • Technical and Security Aspects
      • Endpoints
      • API Codes
  • Knowledge Base
    • Countries Specifications
Powered by GitBook
On this page
  • Payment Methods
  • Description
  • Request
  • Example request
  • Response Fields
  • Payment types
  • Payment Methods

Was this helpful?

  1. API Documentation
  2. Deposits API
  3. Endpoints

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 8 months ago

Was this helpful?

Payment Methods

GET https://api-stg.lime-pay.com/v3/payment_methods?country={country}

Description

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.

In case of integrating the and displaying the payment methods on your cashier, make sure you check the payment methods with this API multiple times per day to make sure that in case a new payment method becomes available or unavailable, you will also automatically update it on your cashier without requiring manual intervention from either side.

Query Parameters

Name
Type
Description

country

string

Country ISO code

Headers

Name
Type
Description

Authorization

string

"Bearer " + Read-Only API Key

Please find all the country codes in the section.

Request

In order to start using the payment methods endpoint, you need to:

  1. Send the request with GET method.

  2. Specify a in the request as QUERY PARAMS.

  3. Send the Authorization header with your read-only API Key as Bearer as follows:

Authorization: Bearer your_read_only_key_here

Example request

curl --location --request GET 'https://api-stg.lime-pay.com/v3/payment_methods?country=MY' \
--header 'Authorization: Bearer your_read_only_key_here'

import java.io.*;
import okhttp3.*;

public class main {
  public static void main(String []args) throws IOException{
    OkHttpClient client = new OkHttpClient().newBuilder()
      .build();
    Request request = new Request.Builder()
      .url("https://api-stg.lime-pay.com/v3/payment_methods?country=MY")
      .method("GET", null)
      .addHeader("Authorization", "Bearer your_read_only_key_here")
      .build();
    Response response = client.newCall(request).execute();
    System.out.println(response.body().string());
  }
}

using System;
using RestSharp;

namespace HelloWorldApplication {
    class HelloWorld {
        static void Main(string[] args) {
            var client = new RestClient("https://api-stg.lime-pay.com/v3/payment_methods?country=MY");
            client.Timeout = -1;
            var request = new RestRequest(Method.GET);
            request.AddHeader("Authorization", "Bearer your_read_only_key_here");
            IRestResponse response = client.Execute(request);
            Console.WriteLine(response.Content);
        }
    }
}

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => "https://api-stg.lime-pay.com/v3/payment_methods?country=MY",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => array(
    "Authorization: Bearer your_read_only_key_here"
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

Example Response

[
    {
        "country": "MY",
        "code": "MB",
        "name": "AmBank",
        "type": "BANK_DEPOSIT",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/MB.svg"
    },
    {
        "country": "MY",
        "code": "TR",
        "name": "Bank Transfer",
        "type": "BANK_TRANSFER",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/TR.svg"
    },
    {
        "country": "MY",
        "code": "BST",
        "name": "Boost",
        "type": "WALLET",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/BST.svg",
        "daily_average": 216,
        "monthly_average": 142
    },
    {
        "country": "MY",
        "code": "BY",
        "name": "CIMB Bank",
        "type": "BANK_DEPOSIT",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/BY.svg",
        "daily_average": 50,
        "monthly_average": 50
    },
    {
        "country": "MY",
        "code": "FPX",
        "name": "FPX",
        "type": "BANK_TRANSFER",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/FPX.svg"
    },
    {
        "country": "MY",
        "code": "GRB",
        "name": "Grab",
        "type": "WALLET",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/GRB.svg",
        "daily_average": 300,
        "monthly_average": 300
    },
    {
        "country": "MY",
        "code": "MY",
        "name": "Maybank",
        "type": "BANK_DEPOSIT",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/MY.svg",
        "daily_average": 17,
        "monthly_average": 17
    },
    {
        "country": "MY",
        "code": "PU",
        "name": "Public Bank",
        "type": "BANK_DEPOSIT",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/PU.svg",
        "daily_average": 32,
        "monthly_average": 32
    },
    {
        "country": "MY",
        "code": "RH",
        "name": "RHB Bank",
        "type": "BANK_DEPOSIT",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/RH.svg",
        "daily_average": 15,
        "monthly_average": 15
    },
    {
        "country": "MY",
        "code": "SPAY",
        "name": "ShopeePay",
        "type": "WALLET",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/SPAY.svg",
        "daily_average": 101,
        "monthly_average": 101
    },
    {
        "country": "MY",
        "code": "TNG",
        "name": "Touch n Go",
        "type": "WALLET",
        "status": "OK",
        "logo": "https://resources.lime-pay.com/cashin/payment_method/square/TNG.svg",
        "daily_average": 73,
        "monthly_average": 73
    }
]
{
    "code": 210,
    "description": "Invalid country",
    "type": "INVALID_COUNTRY"
}
{
    "code": 100,
    "description": "Invalid credentials",
    "type": "INVALID_CREDENTIALS"
}

Response Fields

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.

Field
Format
Description

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 types

payment_type

Description

BANK_DEPOSIT

Bank deposits

BANK_TRANSFER

Electronic Funds Transfer (TEF)

WALLET

Wallet solutions

VOUCHER

Cash solutions

MOBILE MONEY

Mobile Money Solutions

Payment Methods

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

payment method type
OneShot Experience
Countries Specifications
valid country code
Payment Methods
Country code
deposit request
Payment Types