Get checkout wallet transactions
curl --request GET \
--url https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions \
--header 'x-api-key: <api-key>'import requests
url = "https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions', 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://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"statusCode": 200,
"message": "success",
"data": {
"id": "4e5e4451-654f-4bdd-9636-4f68ea52fa1e",
"walletNumber": "2222412513",
"organizationId": "02600494-1a3c-11f0-a818-6045bd97b81d",
"walletName": "Org Test",
"status": "Used",
"createdAt": "2025-10-29T09:16:30.606152Z",
"expiresAt": "2025-10-29T09:46:30.606152Z",
"usedAt": "2025-10-29T09:16:41.769188Z",
"expiredAt": null,
"reactivatedAt": null,
"expectedAmount": 20000.0,
"walletHistories": [
{
"id": "eb1a7058-5ac2-4dd5-9be2-d5f5a7fa6b30",
"checkoutRef": "CHK202510290916306114570",
"expectedAmount": 20000.0,
"generatedAt": "2025-10-29T09:16:30.611608Z",
"usedAt": "2025-10-29T09:16:41.798649Z",
"status": "Used",
"transactionId": "b2381adf-23f1-43d3-bffc-be9f24637220"
}
],
"transactions": [
{
"id": "b2381adf-23f1-43d3-bffc-be9f24637220",
"amount": 20000.0,
"senderAccountNumber": "3333002345",
"senderName": "Nkemakolam Ekeh",
"recipientAccountNumber": "2222412513",
"recipientName": "Org Test",
"organizationSettlementAccount": "9710001442",
"status": "Completed",
"reference": "07f0a353-bd08-4afc-abfd-c8ba5320947c",
"createdAt": "2025-10-29T09:16:41.075592Z",
"completedAt": "2025-10-29T09:16:41.400539Z",
"sessionId": "000001100913103301927365890002",
"reversalId": null,
"reversalAttemptedAt": null
}
]
}
}
{
"code": "401",
"success": false,
"message": "x-api-key is missing in the header",
"data": null
}
{
"statusCode": 403,
"message": "Access denied. The API key provided is for another organization. You can only access your organization's wallets.",
"data": null
}
{
"statusCode": 404,
"message": "Wallet not found or does not belong to the organization mapped to the apikey",
"data": null
}
Checkout
Get checkout wallet transactions
Endpoint for getting all checkout wallets under an organization using the Organization Id
GET
/
api
/
v1
/
checkout-wallet
/
{walletId}
/
transactions
Get checkout wallet transactions
curl --request GET \
--url https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions \
--header 'x-api-key: <api-key>'import requests
url = "https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions', 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://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"statusCode": 200,
"message": "success",
"data": {
"id": "4e5e4451-654f-4bdd-9636-4f68ea52fa1e",
"walletNumber": "2222412513",
"organizationId": "02600494-1a3c-11f0-a818-6045bd97b81d",
"walletName": "Org Test",
"status": "Used",
"createdAt": "2025-10-29T09:16:30.606152Z",
"expiresAt": "2025-10-29T09:46:30.606152Z",
"usedAt": "2025-10-29T09:16:41.769188Z",
"expiredAt": null,
"reactivatedAt": null,
"expectedAmount": 20000.0,
"walletHistories": [
{
"id": "eb1a7058-5ac2-4dd5-9be2-d5f5a7fa6b30",
"checkoutRef": "CHK202510290916306114570",
"expectedAmount": 20000.0,
"generatedAt": "2025-10-29T09:16:30.611608Z",
"usedAt": "2025-10-29T09:16:41.798649Z",
"status": "Used",
"transactionId": "b2381adf-23f1-43d3-bffc-be9f24637220"
}
],
"transactions": [
{
"id": "b2381adf-23f1-43d3-bffc-be9f24637220",
"amount": 20000.0,
"senderAccountNumber": "3333002345",
"senderName": "Nkemakolam Ekeh",
"recipientAccountNumber": "2222412513",
"recipientName": "Org Test",
"organizationSettlementAccount": "9710001442",
"status": "Completed",
"reference": "07f0a353-bd08-4afc-abfd-c8ba5320947c",
"createdAt": "2025-10-29T09:16:41.075592Z",
"completedAt": "2025-10-29T09:16:41.400539Z",
"sessionId": "000001100913103301927365890002",
"reversalId": null,
"reversalAttemptedAt": null
}
]
}
}
{
"code": "401",
"success": false,
"message": "x-api-key is missing in the header",
"data": null
}
{
"statusCode": 403,
"message": "Access denied. The API key provided is for another organization. You can only access your organization's wallets.",
"data": null
}
{
"statusCode": 404,
"message": "Wallet not found or does not belong to the organization mapped to the apikey",
"data": null
}
string
required
The unique idenitifier of the checkout wallet. Exmaple:
3fa85f64-5717-4562-b3fc-2c963f66afa6string
default:"1"
The unique idenitifier for your organization on Embedly. Example:
3fa85f64-5717-4562-b3fc-2c963f66afa6{
"statusCode": 200,
"message": "success",
"data": {
"id": "4e5e4451-654f-4bdd-9636-4f68ea52fa1e",
"walletNumber": "2222412513",
"organizationId": "02600494-1a3c-11f0-a818-6045bd97b81d",
"walletName": "Org Test",
"status": "Used",
"createdAt": "2025-10-29T09:16:30.606152Z",
"expiresAt": "2025-10-29T09:46:30.606152Z",
"usedAt": "2025-10-29T09:16:41.769188Z",
"expiredAt": null,
"reactivatedAt": null,
"expectedAmount": 20000.0,
"walletHistories": [
{
"id": "eb1a7058-5ac2-4dd5-9be2-d5f5a7fa6b30",
"checkoutRef": "CHK202510290916306114570",
"expectedAmount": 20000.0,
"generatedAt": "2025-10-29T09:16:30.611608Z",
"usedAt": "2025-10-29T09:16:41.798649Z",
"status": "Used",
"transactionId": "b2381adf-23f1-43d3-bffc-be9f24637220"
}
],
"transactions": [
{
"id": "b2381adf-23f1-43d3-bffc-be9f24637220",
"amount": 20000.0,
"senderAccountNumber": "3333002345",
"senderName": "Nkemakolam Ekeh",
"recipientAccountNumber": "2222412513",
"recipientName": "Org Test",
"organizationSettlementAccount": "9710001442",
"status": "Completed",
"reference": "07f0a353-bd08-4afc-abfd-c8ba5320947c",
"createdAt": "2025-10-29T09:16:41.075592Z",
"completedAt": "2025-10-29T09:16:41.400539Z",
"sessionId": "000001100913103301927365890002",
"reversalId": null,
"reversalAttemptedAt": null
}
]
}
}
{
"code": "401",
"success": false,
"message": "x-api-key is missing in the header",
"data": null
}
{
"statusCode": 403,
"message": "Access denied. The API key provided is for another organization. You can only access your organization's wallets.",
"data": null
}
{
"statusCode": 404,
"message": "Wallet not found or does not belong to the organization mapped to the apikey",
"data": null
}
⌘I