Hosted Payment
notifybysms
POST/notifybysms

Create external transaction notifying via SMS.

Header Parameters

token*
string

Body Parameters

merchantAuthentication

merchantId*
string
transactionReferenceId*
string

transactionRequest

transactionType*
number
amount*
string
calculateFee
boolean
tipsInputPrompt
boolean
calculateTax
boolean
expiry
number
tipAmount
string
feeAmountC
string
feeLabelC
string
lTaxAmountC
string
lTaxLabelC
string
gTaxAmountC
string
gTaxLabelC
string

notificationOption

notifyBySMS*
boolean
mobileNumber
string

preferences

integrationType*
number
avsVerification
boolean
eReceipt
boolean
eReceiptInputPrompt
boolean
customerName
string
customerEmail
string
customerMobile
string
requestCardToken
boolean
shortenURL
boolean
sendPaymentLink
boolean
integrationVersion
string
level3CEDP
boolean
POST/notifybysms
1curl --location 'https://payment.ipospays.tech/api/v3/external-payment-transaction' \
2--header 'token: ' \
3--header 'Content-Type: application/json' \
4--data '{
5 "personalization": {},
6 "merchantAuthentication": {
7 "merchantId": "139322815010",
8 "transactionReferenceId": "TXNId00111223334571666"
9 },
10 "transactionRequest": {
11 "transactionType": 1,
12 "amount": "1500",
13 "calculateFee": false,
14 "tipsInputPrompt": false,
15 "calculateTax": false,
16 "expiry": 1,
17 "tipAmount": "",
18 "feeAmount": "",
19 "feeLabel": "",
20 "lTaxAmount": "",
21 "lTaxLabel": "",
22 "gTaxAmount": "",
23 "gTaxLabel": ""
24 },
25 "notificationOption": {
26 "notifyBySMS": true,
27 "mobileNumber": ""
28 },
29 "preferences": {
30 "integrationType": 1,
31 "avsVerification": false,
32 "eReceipt": false,
33 "eReceiptInputPrompt": false,
34 "customerName": "",
35 "customerEmail": "",
36 "customerMobile": "",
37 "requestCardToken": false,
38 "shortenURL": "",
39 "sendPaymentLink": false,
40 "integrationVersion": "",
41 "level3CEDP": ""
42 }
43}'
Response

// Awaiting response…

Sample response
{
  "message": "URL generated successfully",
  "information": ""
}