# Page Flow Approach

The checkout process is built on the **Page Flow** architecture.

1. **Step-based Progression**: Each step focuses on its own responsibility. The user completes only one task at a time (for example: selecting an address or choosing a payment method).
2. **Conditional Navigation**: Some steps may be automatically skipped depending on the user's state. For example, the email collection step is unnecessary for logged-in users.
3. **Revisability**: The user can return to previous steps at any time to update their information. The system automatically handles how this change affects subsequent steps.
4. **State Preservation**: Even if the user leaves the checkout process, they can resume from where they left off within a certain time period.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://apidocs.akinon.com/commerce-openapis/checkout/checkout-overview/page-flow-approach.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
