Get Payment Providers
curl --request POST \
--url https://sandbox-api.kotanipay.io/api/v3/providers \
--header 'Content-Type: application/json' \
--data '
{
"currency": "NGN",
"paymentMethod": "BANK_TRANSFER"
}
'import requests
url = "https://sandbox-api.kotanipay.io/api/v3/providers"
payload = {
"currency": "NGN",
"paymentMethod": "BANK_TRANSFER"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({currency: 'NGN', paymentMethod: 'BANK_TRANSFER'})
};
fetch('https://sandbox-api.kotanipay.io/api/v3/providers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox-api.kotanipay.io/api/v3/providers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'currency' => 'NGN',
'paymentMethod' => 'BANK_TRANSFER'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox-api.kotanipay.io/api/v3/providers"
payload := strings.NewReader("{\n \"currency\": \"NGN\",\n \"paymentMethod\": \"BANK_TRANSFER\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sandbox-api.kotanipay.io/api/v3/providers")
.header("Content-Type", "application/json")
.body("{\n \"currency\": \"NGN\",\n \"paymentMethod\": \"BANK_TRANSFER\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.kotanipay.io/api/v3/providers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"currency\": \"NGN\",\n \"paymentMethod\": \"BANK_TRANSFER\"\n}"
response = http.request(request)
puts response.read_bodyHealth & System
Payment Providers
This Api Handles fetching of payment providers
POST
/
api
/
v3
/
providers
Get Payment Providers
curl --request POST \
--url https://sandbox-api.kotanipay.io/api/v3/providers \
--header 'Content-Type: application/json' \
--data '
{
"currency": "NGN",
"paymentMethod": "BANK_TRANSFER"
}
'import requests
url = "https://sandbox-api.kotanipay.io/api/v3/providers"
payload = {
"currency": "NGN",
"paymentMethod": "BANK_TRANSFER"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({currency: 'NGN', paymentMethod: 'BANK_TRANSFER'})
};
fetch('https://sandbox-api.kotanipay.io/api/v3/providers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox-api.kotanipay.io/api/v3/providers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'currency' => 'NGN',
'paymentMethod' => 'BANK_TRANSFER'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox-api.kotanipay.io/api/v3/providers"
payload := strings.NewReader("{\n \"currency\": \"NGN\",\n \"paymentMethod\": \"BANK_TRANSFER\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sandbox-api.kotanipay.io/api/v3/providers")
.header("Content-Type", "application/json")
.body("{\n \"currency\": \"NGN\",\n \"paymentMethod\": \"BANK_TRANSFER\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.kotanipay.io/api/v3/providers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"currency\": \"NGN\",\n \"paymentMethod\": \"BANK_TRANSFER\"\n}"
response = http.request(request)
puts response.read_bodyGet the list of available payment providers and their supported currencies and countries.
⌘I