- Introduction to the SmatPay API
- Integration Guide - Quick Start
- Integration Guide - Payments
- SmatPay WooCommerce
- .NET SDK
- Get Token SandboxPOST
- Get Token ProductionPOST
- Get CurrenciesGET
- Get BanksGET
- Get Payment intervalsGET
- Payment CalculatorPOST
- Test Webhook SandboxPOST
- Test Webhook ProductionPOST
- Pay Innbucks SandboxPOST
- Pay Innbucks Sandbox BulkPOST
- Pay Innbucks ProductionPOST
- Pay Innbucks Production BulkPOST
- Pay ZimSwitch SandboxPOST
- Pay Visa SandboxPOST
- Pay Visa ProductionPOST
- Pay Mastercard SandboxPOST
- Pay Mastercard ProductionPOST
- Pay Mastercard Sandbox BulkPOST
- Pay Mastercard Production BulkPOST
- Pay Visa Sandbox BulkPOST
- Pay Visa Production BulkPOST
- Pay ZimSwitch Sandbox BulkPOST
- Pay ZimSwitch ProductionPOST
- Pay ZimSwitch Production BulkPOST
- Pay Ecocash SandboxPOST
- Pay Ecocash Sandbox BulkPOST
- Bulk Payouts SandboxPOST
- Bulk Payouts ProductionPOST
- Pay Ecocash ProductionPOST
- Pay Ecocash Production BulkPOST
- Payment Status Innbucks SandboxGET
- Payment Status Innbucks ProductionGET
- Payment Status Ecocash SandboxGET
- Payment Status Ecocash ProductionGET
- Payment Status ZimSwitch SandboxGET
- Payment Status ZimSwitch ProductionGET
- Payment Status Visa SandboxGET
- Payment Status MasterCard Sandbox CopyGET
- Payment Status Visa ProductionGET
- Payment Status Mastercard ProductionGET
- Generate Recurring Payment SandboxPOST
- Generate Payment Token SandboxPOST
- Generate Payment Token With Payment SandboxPOST
- Cancel Recurring Payment SandboxPOST
- Fast CheckoutPOST
- Fast Checkout SandboxPOST
Payment Status Visa Production
GET
/api/getPaymentDetails
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
transactionReference
string
required
walletName
string
required
Example
{
"transactionReference": "7FB266E05FE716C8FC13ADF9EE4C7859.uat01-vm-tx04",
"walletName": "Visa"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://live.smatpay.africa/api/getPaymentDetails' \
--header 'Content-Type: application/json' \
--data-raw '{
"transactionReference":"7FB266E05FE716C8FC13ADF9EE4C7859.uat01-vm-tx04",
"walletName" : "Visa"
}'
Responses
🟢200Payment Details Zimswitch
application/json
Body
array of:
status
string
optional
description
string
optional
paymentCurrency
string
optional
paymentAmount
integer
optional
paymentCharges
number
optional
paymentReference
string
optional
paymentMethod
string
optional
paymentDate
string
optional
Example
[
{
"status": "Paid",
"description": "",
"paymentCurrency": "USD",
"paymentAmount": 10,
"paymentCharges": 0.8499999999999996,
"paymentReference": "9fed47af-72db-44cb-8d90-ba262d9ec9c3",
"paymentMethod": "Visa",
"paymentDate": "2025-02-18T14:13:20.944+00:00"
}
]
Modified at 2025-03-10 20:49:15