Scenario 2 (Master Card and Visa Card Type)

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

Scenario 2 (Master Card and Visa Card Type)

  1. The occurs for 3D secure card transactions.

  2. After the payment has been initiated, the card holder gets prompted to complete the payment on the card's bank page.

  3. For a successful initial call, code S20 will be returned with a redirect link in the redirectUrl field, merchant is expected to redirect to the link. Because of this merchant is expected to always pass the redirectUrl link that SeerBit should come back to after the payment is completed on 3Ds site.

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