RequestPayment
RequestPayment lets you send a checkout URL to a customer via email or text message after a plan has been established. Calling it by API is the equivalent to the following sequence in the Merchant Portal: "Create Payment Plan -> (Enter Amount) Continue -> (Select Options) Continue -> Send Link." You can send a request to either an email or a text message, but not both at the same time.
post
https://webapi.{environment}.splitit.com/api/InstallmentPlan/RequestPayment
cURL
curl --request POST \
--url https://webapi.sandbox.splitit.com/api/InstallmentPlan/RequestPayment \
--header 'Authorization: Basic QVBCCXNlcjAwMDAzMjIwMDp0QjJyam9XeTdjWDdiQnlkTUZiWWo2UUZ2OFU5M1NvWlBZeHdTdFN3TVhqUTVYZTJaMA==' \
--header 'Content-Type: application/json' \
--data '{
"InstallmentPlanNumber": "41200136480187520277",
"PaymentApprovalPhone": "17133293361",
}
'
Last modified 8mo ago