Payment

curl --location 'https://seerbitapi.com/api/v2/payments' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_ENCRYPTED_KEY' \
--data-raw '{
    "publicKey": "YOUR_PUBLIC_KEY",
    "amount": "500",
    "currency": "NGN",
    "country": "NG",
    "paymentReference": "payment_reference",
    "email": "ts@emaildomain.com",
    "fullName": "Halil TS",
     "tokenize": "false",
    "callbackUrl": "https://seerbit.com"
}'

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

Request Body

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

Last updated