For the complete documentation index, see llms.txt. This page is also available as Markdown.

Acknowledge the checkout provider thank-you step

Submits the thank-you acknowledgement. No input data is required. This step has no processing logic — submitting it simply confirms receipt of the final page context. The is_valid condition always returns false, so the page never auto-advances.

Required Fields: (none)

Next Page: (none — end of flow)

post
Header parameters
x-requested-withstring · enumRequired

Required header for AJAX requests. Must be set to XMLHttpRequest for all checkout requests.

Default: XMLHttpRequestPossible values:
CookiestringOptional

Session cookie header (e.g. sessionid=abc123 or osessionid=<session_id>)

Body
objectOptional
Responses
200

Thank-you step acknowledged

application/json
errorsone of · nullableOptional
or
string[]Optional
template_namestringOptional
post/orders/checkout/?page=CheckoutProviderThankYouPage
POST /orders/checkout/?page=CheckoutProviderThankYouPage HTTP/1.1
Host: sandbox.akinon.com
x-requested-with: XMLHttpRequest
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 2

""
200

Thank-you step acknowledged

{
  "context_list": [
    {
      "page_name": "CheckoutProviderThankYouPage",
      "page_slug": "checkoutproviderthankyoupage",
      "page_context": {
        "return_url": "https://shop.example.com/orders/checkout-provider-success/abc123/",
        "merchant_customer_id": 42,
        "merchant_customer_date_joined": "2024-01-15T08:30:00+00:00",
        "merchant_customer_akifast_date_joined": "2024-06-01T10:00:00+00:00"
      }
    }
  ],
  "pre_order": {
    "user_email": "user@akinon.com"
  },
  "errors": {},
  "template_name": "orders/checkout.html"
}

Last updated

Was this helpful?