> For the complete documentation index, see [llms.txt](https://docs.northcommerce.com/north-commerce/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.northcommerce.com/north-commerce/for-developers.md).

# For Developers

- [Flows](https://docs.northcommerce.com/north-commerce/for-developers/flows.md): Flows in North Commerce are a way to manage and coordinate different aspects of the e-commerce functionality, particularly in the frontend user interface.
- [Add To Cart](https://docs.northcommerce.com/north-commerce/for-developers/flows/add-to-cart.md): Adding the add to cart functionality into your custom North Commerce UI
- [Flow Events](https://docs.northcommerce.com/north-commerce/for-developers/flows/flow-events.md): You can trigger flow events on any html event that is available in Javascript
- [Custom Functions In Flows](https://docs.northcommerce.com/north-commerce/for-developers/flows/custom-functions-in-flows.md): With Flows you can run custom javascript functions to provide custom functionality.
- [PHP "API"](https://docs.northcommerce.com/north-commerce/for-developers/php-api.md)
- [Basic Entity Access Usage](https://docs.northcommerce.com/north-commerce/for-developers/php-api/basic-entity-access-usage.md): This page covers how to get started with EntityAccess inside of the North Commerce plugin.  EntityAccess is what we call our system for to create, update or delete any data in the North Commerce table
- [Hooks & Actions](https://docs.northcommerce.com/north-commerce/for-developers/hooks-and-actions.md)
- [View Admin Hook Names](https://docs.northcommerce.com/north-commerce/for-developers/hooks-and-actions/view-admin-hook-names.md)
- [REST API](https://docs.northcommerce.com/north-commerce/for-developers/rest-api.md)
- [Getting Started](https://docs.northcommerce.com/north-commerce/for-developers/rest-api/getting-started.md): The North Commerce Rest API is a robust api that gives you access to all parts of North Commerce's data on your store.
- [Adding Test Data](https://docs.northcommerce.com/north-commerce/for-developers/rest-api/adding-test-data.md): To get started testing North Commerce you can add test data to your store.
- [Filtering](https://docs.northcommerce.com/north-commerce/for-developers/rest-api/filtering.md): When accessing data via the API, there are three types of relationships that are exposed. They are described below.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.northcommerce.com/north-commerce/for-developers.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
