curl --request POST \
--url https://api.nomba.com/v1/checkout/checkout-card-detail \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cardDetails": {
"cardCVV": 11,
"cardExpiryMonth": 3,
"cardExpiryYear": 2050,
"cardNumber": "5190752909999995",
"cardPin": 1111
},
"key": "",
"orderReference": "c4307d58-2513-41d8-b7f7-dfecd5f9fdbe",
"saveCard": "true",
"deviceInformation": {
"httpBrowserLanguage": "en-GB",
"httpBrowserJavaEnabled": "true",
"httpBrowserJavaScriptEnabled": "true",
"httpBrowserColorDepth": "30",
"httpBrowserScreenHeight": "900",
"httpBrowserScreenWidth": "1500",
"httpBrowserTimeDifference": "-60",
"userAgentBrowserValue": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)",
"deviceChannel": "Browser"
}
}
'import requests
url = "https://api.nomba.com/v1/checkout/checkout-card-detail"
payload = {
"cardDetails": {
"cardCVV": 11,
"cardExpiryMonth": 3,
"cardExpiryYear": 2050,
"cardNumber": "5190752909999995",
"cardPin": 1111
},
"key": "",
"orderReference": "c4307d58-2513-41d8-b7f7-dfecd5f9fdbe",
"saveCard": "true",
"deviceInformation": {
"httpBrowserLanguage": "en-GB",
"httpBrowserJavaEnabled": "true",
"httpBrowserJavaScriptEnabled": "true",
"httpBrowserColorDepth": "30",
"httpBrowserScreenHeight": "900",
"httpBrowserScreenWidth": "1500",
"httpBrowserTimeDifference": "-60",
"userAgentBrowserValue": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)",
"deviceChannel": "Browser"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
cardDetails: {
cardCVV: 11,
cardExpiryMonth: 3,
cardExpiryYear: 2050,
cardNumber: '5190752909999995',
cardPin: 1111
},
key: '',
orderReference: 'c4307d58-2513-41d8-b7f7-dfecd5f9fdbe',
saveCard: 'true',
deviceInformation: {
httpBrowserLanguage: 'en-GB',
httpBrowserJavaEnabled: 'true',
httpBrowserJavaScriptEnabled: 'true',
httpBrowserColorDepth: '30',
httpBrowserScreenHeight: '900',
httpBrowserScreenWidth: '1500',
httpBrowserTimeDifference: '-60',
userAgentBrowserValue: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)',
deviceChannel: 'Browser'
}
})
};
fetch('https://api.nomba.com/v1/checkout/checkout-card-detail', 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://api.nomba.com/v1/checkout/checkout-card-detail",
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([
'cardDetails' => [
'cardCVV' => 11,
'cardExpiryMonth' => 3,
'cardExpiryYear' => 2050,
'cardNumber' => '5190752909999995',
'cardPin' => 1111
],
'key' => '',
'orderReference' => 'c4307d58-2513-41d8-b7f7-dfecd5f9fdbe',
'saveCard' => 'true',
'deviceInformation' => [
'httpBrowserLanguage' => 'en-GB',
'httpBrowserJavaEnabled' => 'true',
'httpBrowserJavaScriptEnabled' => 'true',
'httpBrowserColorDepth' => '30',
'httpBrowserScreenHeight' => '900',
'httpBrowserScreenWidth' => '1500',
'httpBrowserTimeDifference' => '-60',
'userAgentBrowserValue' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)',
'deviceChannel' => 'Browser'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://api.nomba.com/v1/checkout/checkout-card-detail"
payload := strings.NewReader("{\n \"cardDetails\": {\n \"cardCVV\": 11,\n \"cardExpiryMonth\": 3,\n \"cardExpiryYear\": 2050,\n \"cardNumber\": \"5190752909999995\",\n \"cardPin\": 1111\n },\n \"key\": \"\",\n \"orderReference\": \"c4307d58-2513-41d8-b7f7-dfecd5f9fdbe\",\n \"saveCard\": \"true\",\n \"deviceInformation\": {\n \"httpBrowserLanguage\": \"en-GB\",\n \"httpBrowserJavaEnabled\": \"true\",\n \"httpBrowserJavaScriptEnabled\": \"true\",\n \"httpBrowserColorDepth\": \"30\",\n \"httpBrowserScreenHeight\": \"900\",\n \"httpBrowserScreenWidth\": \"1500\",\n \"httpBrowserTimeDifference\": \"-60\",\n \"userAgentBrowserValue\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)\",\n \"deviceChannel\": \"Browser\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://api.nomba.com/v1/checkout/checkout-card-detail")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"cardDetails\": {\n \"cardCVV\": 11,\n \"cardExpiryMonth\": 3,\n \"cardExpiryYear\": 2050,\n \"cardNumber\": \"5190752909999995\",\n \"cardPin\": 1111\n },\n \"key\": \"\",\n \"orderReference\": \"c4307d58-2513-41d8-b7f7-dfecd5f9fdbe\",\n \"saveCard\": \"true\",\n \"deviceInformation\": {\n \"httpBrowserLanguage\": \"en-GB\",\n \"httpBrowserJavaEnabled\": \"true\",\n \"httpBrowserJavaScriptEnabled\": \"true\",\n \"httpBrowserColorDepth\": \"30\",\n \"httpBrowserScreenHeight\": \"900\",\n \"httpBrowserScreenWidth\": \"1500\",\n \"httpBrowserTimeDifference\": \"-60\",\n \"userAgentBrowserValue\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)\",\n \"deviceChannel\": \"Browser\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nomba.com/v1/checkout/checkout-card-detail")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"cardDetails\": {\n \"cardCVV\": 11,\n \"cardExpiryMonth\": 3,\n \"cardExpiryYear\": 2050,\n \"cardNumber\": \"5190752909999995\",\n \"cardPin\": 1111\n },\n \"key\": \"\",\n \"orderReference\": \"c4307d58-2513-41d8-b7f7-dfecd5f9fdbe\",\n \"saveCard\": \"true\",\n \"deviceInformation\": {\n \"httpBrowserLanguage\": \"en-GB\",\n \"httpBrowserJavaEnabled\": \"true\",\n \"httpBrowserJavaScriptEnabled\": \"true\",\n \"httpBrowserColorDepth\": \"30\",\n \"httpBrowserScreenHeight\": \"900\",\n \"httpBrowserScreenWidth\": \"1500\",\n \"httpBrowserTimeDifference\": \"-60\",\n \"userAgentBrowserValue\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)\",\n \"deviceChannel\": \"Browser\"\n }\n}"
response = http.request(request)
puts response.read_body{
"code": "00",
"description": "Success",
"data": {
"status": "true",
"message": "Success",
"responseCode": "00",
"transactionId": "c4307d58-2513-41d8-b7f7-dfecd5f9fdbe",
"secureAuthenticationData": {
"jwt": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"md": "6775843012",
"acsUrl": "https://ip:port/merchant.com/callback",
"termUrl": "https://ip:port/merchant.com/callback"
}
}
}{
"code": "400",
"description": "Request failed."
}{
"code": "401",
"description": "Unauthorized"
}{
"code": "403",
"description": "Forbidden"
}{
"code": "404",
"description": "Record not found"
}{
"code": "429",
"description": "Too many requests"
}{
"code": "500",
"description": "Server error"
}Submit customer card details
Use this endpoint to submit the customers card details
curl --request POST \
--url https://api.nomba.com/v1/checkout/checkout-card-detail \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cardDetails": {
"cardCVV": 11,
"cardExpiryMonth": 3,
"cardExpiryYear": 2050,
"cardNumber": "5190752909999995",
"cardPin": 1111
},
"key": "",
"orderReference": "c4307d58-2513-41d8-b7f7-dfecd5f9fdbe",
"saveCard": "true",
"deviceInformation": {
"httpBrowserLanguage": "en-GB",
"httpBrowserJavaEnabled": "true",
"httpBrowserJavaScriptEnabled": "true",
"httpBrowserColorDepth": "30",
"httpBrowserScreenHeight": "900",
"httpBrowserScreenWidth": "1500",
"httpBrowserTimeDifference": "-60",
"userAgentBrowserValue": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)",
"deviceChannel": "Browser"
}
}
'import requests
url = "https://api.nomba.com/v1/checkout/checkout-card-detail"
payload = {
"cardDetails": {
"cardCVV": 11,
"cardExpiryMonth": 3,
"cardExpiryYear": 2050,
"cardNumber": "5190752909999995",
"cardPin": 1111
},
"key": "",
"orderReference": "c4307d58-2513-41d8-b7f7-dfecd5f9fdbe",
"saveCard": "true",
"deviceInformation": {
"httpBrowserLanguage": "en-GB",
"httpBrowserJavaEnabled": "true",
"httpBrowserJavaScriptEnabled": "true",
"httpBrowserColorDepth": "30",
"httpBrowserScreenHeight": "900",
"httpBrowserScreenWidth": "1500",
"httpBrowserTimeDifference": "-60",
"userAgentBrowserValue": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)",
"deviceChannel": "Browser"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
cardDetails: {
cardCVV: 11,
cardExpiryMonth: 3,
cardExpiryYear: 2050,
cardNumber: '5190752909999995',
cardPin: 1111
},
key: '',
orderReference: 'c4307d58-2513-41d8-b7f7-dfecd5f9fdbe',
saveCard: 'true',
deviceInformation: {
httpBrowserLanguage: 'en-GB',
httpBrowserJavaEnabled: 'true',
httpBrowserJavaScriptEnabled: 'true',
httpBrowserColorDepth: '30',
httpBrowserScreenHeight: '900',
httpBrowserScreenWidth: '1500',
httpBrowserTimeDifference: '-60',
userAgentBrowserValue: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)',
deviceChannel: 'Browser'
}
})
};
fetch('https://api.nomba.com/v1/checkout/checkout-card-detail', 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://api.nomba.com/v1/checkout/checkout-card-detail",
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([
'cardDetails' => [
'cardCVV' => 11,
'cardExpiryMonth' => 3,
'cardExpiryYear' => 2050,
'cardNumber' => '5190752909999995',
'cardPin' => 1111
],
'key' => '',
'orderReference' => 'c4307d58-2513-41d8-b7f7-dfecd5f9fdbe',
'saveCard' => 'true',
'deviceInformation' => [
'httpBrowserLanguage' => 'en-GB',
'httpBrowserJavaEnabled' => 'true',
'httpBrowserJavaScriptEnabled' => 'true',
'httpBrowserColorDepth' => '30',
'httpBrowserScreenHeight' => '900',
'httpBrowserScreenWidth' => '1500',
'httpBrowserTimeDifference' => '-60',
'userAgentBrowserValue' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)',
'deviceChannel' => 'Browser'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://api.nomba.com/v1/checkout/checkout-card-detail"
payload := strings.NewReader("{\n \"cardDetails\": {\n \"cardCVV\": 11,\n \"cardExpiryMonth\": 3,\n \"cardExpiryYear\": 2050,\n \"cardNumber\": \"5190752909999995\",\n \"cardPin\": 1111\n },\n \"key\": \"\",\n \"orderReference\": \"c4307d58-2513-41d8-b7f7-dfecd5f9fdbe\",\n \"saveCard\": \"true\",\n \"deviceInformation\": {\n \"httpBrowserLanguage\": \"en-GB\",\n \"httpBrowserJavaEnabled\": \"true\",\n \"httpBrowserJavaScriptEnabled\": \"true\",\n \"httpBrowserColorDepth\": \"30\",\n \"httpBrowserScreenHeight\": \"900\",\n \"httpBrowserScreenWidth\": \"1500\",\n \"httpBrowserTimeDifference\": \"-60\",\n \"userAgentBrowserValue\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)\",\n \"deviceChannel\": \"Browser\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://api.nomba.com/v1/checkout/checkout-card-detail")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"cardDetails\": {\n \"cardCVV\": 11,\n \"cardExpiryMonth\": 3,\n \"cardExpiryYear\": 2050,\n \"cardNumber\": \"5190752909999995\",\n \"cardPin\": 1111\n },\n \"key\": \"\",\n \"orderReference\": \"c4307d58-2513-41d8-b7f7-dfecd5f9fdbe\",\n \"saveCard\": \"true\",\n \"deviceInformation\": {\n \"httpBrowserLanguage\": \"en-GB\",\n \"httpBrowserJavaEnabled\": \"true\",\n \"httpBrowserJavaScriptEnabled\": \"true\",\n \"httpBrowserColorDepth\": \"30\",\n \"httpBrowserScreenHeight\": \"900\",\n \"httpBrowserScreenWidth\": \"1500\",\n \"httpBrowserTimeDifference\": \"-60\",\n \"userAgentBrowserValue\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)\",\n \"deviceChannel\": \"Browser\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nomba.com/v1/checkout/checkout-card-detail")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"cardDetails\": {\n \"cardCVV\": 11,\n \"cardExpiryMonth\": 3,\n \"cardExpiryYear\": 2050,\n \"cardNumber\": \"5190752909999995\",\n \"cardPin\": 1111\n },\n \"key\": \"\",\n \"orderReference\": \"c4307d58-2513-41d8-b7f7-dfecd5f9fdbe\",\n \"saveCard\": \"true\",\n \"deviceInformation\": {\n \"httpBrowserLanguage\": \"en-GB\",\n \"httpBrowserJavaEnabled\": \"true\",\n \"httpBrowserJavaScriptEnabled\": \"true\",\n \"httpBrowserColorDepth\": \"30\",\n \"httpBrowserScreenHeight\": \"900\",\n \"httpBrowserScreenWidth\": \"1500\",\n \"httpBrowserTimeDifference\": \"-60\",\n \"userAgentBrowserValue\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)\",\n \"deviceChannel\": \"Browser\"\n }\n}"
response = http.request(request)
puts response.read_body{
"code": "00",
"description": "Success",
"data": {
"status": "true",
"message": "Success",
"responseCode": "00",
"transactionId": "c4307d58-2513-41d8-b7f7-dfecd5f9fdbe",
"secureAuthenticationData": {
"jwt": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"md": "6775843012",
"acsUrl": "https://ip:port/merchant.com/callback",
"termUrl": "https://ip:port/merchant.com/callback"
}
}
}{
"code": "400",
"description": "Request failed."
}{
"code": "401",
"description": "Unauthorized"
}{
"code": "403",
"description": "Forbidden"
}{
"code": "404",
"description": "Record not found"
}{
"code": "429",
"description": "Too many requests"
}{
"code": "500",
"description": "Server error"
}Authorizations
Nomba authenticates API calls with OAuth2 HTTP bearer tokens. There are two methods of authentication; Client-Credentials method and PKCE (Proof Key for Code Exchange) method. In each of the methods, You will get an ACCESS_TOKEN. You need to use an "Authorization" HTTP header to provide your ACCESS_TOKEN. For example: Authorization: {ACCESS_TOKEN}.
Body
The request payload required to filter account transactions.
Stringified card details
{
"cardCVV": 11,
"cardExpiryMonth": 3,
"cardExpiryYear": 2050,
"cardNumber": "5190752909999995",
"cardPin": 1111
}encryption key is data encrption is in use, else empty string
""
the order reference returned when the order was created
"c4307d58-2513-41d8-b7f7-dfecd5f9fdbe"
if true, this this user cardn will be saved for the user's future use. Note the process is not complete until the user-card verification endpoints are called to authenticate the user's phone number.
"true"
Contains browser information for the device making the api calls
Show child attributes
Show child attributes