Scenario 1 (Verve Card Type)

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

Scenario 1 (Verve Card Type)

  1. The customers gets prompted to enter card pin.

  2. After the customer enters the card pin, call the payment service again using payment/initiates endpoint.

  3. An OTP (one time password) is sent to the cardholders registered phone number or email to validate the transaction.

  4. To Validate the transaction Call the Validate OTP payments/otp endpoint with the customers OTP and Pass the transactions linking reference in the request body.

curl --location 'https://seerbitapi.com/api/v2/payments/initiates' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_ENCRYPTION_KEY' \
--data '{
	"transaction":
		{
		 "linkingreference":"F468778061587905955047",
         "otp":"496865"
         }
}'

Last updated