Payment

curl --location --request POST 'https://seerbitapi.com/api/v2/payments' \
--header 'Authorization: Bearer OGonagfnkernEt5RibwyveU4th1bVmd2/cDNStcdIDZa/H3T36dZpuydeI9/zI6e24DDloBEGxPQi3iu0uJFvNjKPJCpogaxZ1zIdsNwrq6e0pr5eMUpcFzt1hUxGAu3' \
--header 'Content-Type: application/json' \
--data-raw '{
	"publicKey":"SBTESTPUBK_4v0JR58modUFJjF1Es206pveBQjOLxe2",
	"amount":"100.00",
    	"email": "omotolasambo@gmail.com",
	"currency":"NGN",
	"country":"NG",
	"paymentReference":"LKJHGFDR123dddUI23992JN23R"
}'

POST https://seerbitapi.com/api/v2/payments

Request Body

NameTypeDescription

publicKey*

String

This is the merchant public key.

amount*

String

This is the amount to be paid.

email*

String

This is the email of the customer.

country*

String

This is the country from which the transaction is been carried out from

paymentReference*

String

This is the unique identifier for a transaction, to be generated by merchant.

{
 "status": "SUCCESS",
 "data": {
          "code": "00",
          "payments": {
                       "redirectLink": "http://checkout.seerbitapi.com/#/?mid=merchantpublickey&paymentReference=643108207792124616573324",
                       "paymentStatus": "08"
          },
        "message": "Successful"
    }
}

Last updated