POST {{baseURL}}/pay-int-api/quick-payments/{{quickPaymentId}}/send-sms-notification
This endpoint sends a one-time payment link to a customer through SMS.
See Also:
To create a one-time payment link, see POST /pay-int-api/quick-payments/one-time.
To create a reusable payment link, see POST /pay-int-api/quick-payments/reusable.
To activate a payment link, see POST /pay-int-api/quick-payments/{quickPaymentId}/activate.
To deactivate a payment link, see POST /pay-int-api/quick-payments/{quickPaymentId}/deactivate.
Security
Bearer
The request containing the details for the SMS notification.
Indicates the SMS phone number.
Example: +14155552309
Example:"+14155552309"
- Mock serverhttps://developer.flute.com/_mock/api-reference/pay-int-api/quick-payments/{quickPaymentId}/send-sms-notification
- Sandbox environmenthttps://sandbox.api.flute.com/pay-int-api/quick-payments/{quickPaymentId}/send-sms-notification
- Production environmenthttps://api.flute.com/pay-int-api/quick-payments/{quickPaymentId}/send-sms-notification
curl -i -X POST \
https://developer.flute.com/_mock/api-reference/pay-int-api/quick-payments/0423617a-2004-4516-935d-e5ad4bbbe93e/send-sms-notification \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-api-version: 1.0' \
-d '{
"phoneNumber": "+14155552309",
"customerConsent": true
}'