Documentation
Home
Login
API Reference
Support
Search…
v1.0.1
Welcome
Get Started
Accept Payment
Payment Methods
Card Payment
Pre-Authorized Payments
3D Secure Authorisation
Non-3D Secure Payment
Charge
Transfer
Bank Account Payment
USSD
Mobile Money
Payment Features
Payout
Libraries
Webhook
Development Resources
Hash
Responses
Currency Codes
Powered By
GitBook
Charge
This payment option is used to charge non 3d transactions
Authentication
Request Body
Response Body
1
curl
-
X
POST
2
https
://
seerbitapi
.
com
/
api
/
v2
/
payments
/
charge
3
-
H
'
Content
-
Type
:
application
/
json'
4
-
H
'
Authorization
:
Basic
{
token
}
Copied!
1
{
2
"publicKey"
:
"merchant public key"
,
3
"amount"
:
"1.00"
,
4
"fullName"
:
"john doe"
,
5
"mobileNumber"
:
"08033456599"
,
6
"currency"
:
"NGN"
,
7
"country"
:
"NG"
,
8
"paymentReference"
:
"92SQ2A3BCDE42RFR2AS122221"
,
9
"email"
:
"
[email protected]
"
,
10
"productId"
:
"Foods"
,
11
"productDescription"
:
"RASPBERRY"
,
12
"cardNumber"
:
"5123450000000008"
,
13
"cvv"
:
"100"
,
14
"expiryMonth"
:
"05"
,
15
"expiryYear"
:
"21"
,
16
"pin"
:
"1234"
17
}
18
Copied!
1
{
2
"status"
:
"SUCCESS"
,
3
"data"
:
{
4
"code"
:
"00"
,
5
"payments"
:
{
6
"paymentReference"
:
"SBT_NON3D_TEST11"
,
7
"linkingReference"
:
"F031632901595935832514"
,
8
"status"
:
"CAPTURED"
,
9
"card"
:
{
10
"bin"
:
"512345"
,
11
"last4"
:
"0008"
,
12
"token"
:
"tk_970f6b6c-23cb-48ea-a8a1-508d5a81825f"
13
}
14
},
15
"message"
:
"APPROVED"
16
}
17
}
Copied!
The payment reference is to be unique, and properly handled by the merchant
Returning Customer Request
For returning customers, the
cardToken
gotten from the initial response above can subsequently be used in place of the card details.
Request Body
1
{
2
"publicKey"
:
"lpk_9j6BUBDxLcI6kBATGLGKqsHRO_HT0C"
,
3
"amount"
:
"1.00"
,
4
"fullName"
:
"john doe"
,
5
"mobileNumber"
:
"08033456599"
,
6
"currency"
:
"KES"
,
7
"country"
:
"KE"
,
8
"paymentReference"
:
"92SQ2A3BeCDE42RFR2AS122221"
,
9
"email"
:
"
[email protected]
"
,
10
"productId"
:
"Foods"
,
11
"productDescription"
:
"RASPBERRY"
,
12
"cardToken"
:
"tk_5300c23a-d1b8-4437-8c36-c8031c404873"
13
}
Copied!
Previous
Non-3D Secure Payment
Next
Transfer
Last modified
1yr ago
Copy link
Contents