Send Checkout URL SMS to Customer
Sends the checkout continuation URL to the specified phone number via SMS. This allows customers without a QR reader to open the checkout flow on their own device by tapping the link in the SMS. This is an independent page — it does not advance the checkout flow.
Required Fields:
phone_number: The recipient's phone number, validated against the configured phone number format.
SMS Content: The SMS contains a tokenized checkout URL. The token allows the customer to authenticate and resume the checkout session from their own device.
Cooldown Enforcement: Shares the same SMS cooldown mechanism as SendBarcodeSmsPage. The ORDER_BARCODE_SENT_SMS_EXPIRATION_IN_SECONDS setting controls the minimum interval between sends.
Client Type Restriction: Only in-store clients (ClientType.instore) are permitted to submit this page.
Required header for AJAX requests. Must be set to XMLHttpRequest for all checkout requests.
XMLHttpRequestPossible values: Session cookie header (e.g. sessionid=abc123 or osessionid=<session_id>)
Recipient phone number for the checkout URL SMS. Validated against the configured phone number format.
+905551234567Checkout URL SMS sent successfully
POST /orders/checkout/?page=SendCheckoutUrlSmsPage HTTP/1.1
Host: sandbox.akinon.com
x-requested-with: XMLHttpRequest
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 32
"phone_number='+905551234567'"Checkout URL SMS sent successfully
{
"context_list": [],
"errors": {}
}Last updated
Was this helpful?

