# Sanal POS API Mimarisi Hakkında

### &#x20;VPOS Mimarisi

VPOS, modern yazılım standartlarına uygun olarak **stateless** ve **servis odaklı** bir mimariyle tasarlanmıştır.

#### 🔹 Durumsuz Yapı (Stateless)

* Her API çağrısı bağımsızdır; önceki isteklere bağlılık yoktur.
* Oturum (session) yönetimi gerekmez.
* Yük dengeleme ve ölçeklenebilirlik kolaylaşır.
* Servisler daha esnek şekilde yönetilebilir.

#### 🔹 Servis Odaklı Yapı (Service-Oriented)

* Her işlev bağımsız bir servis olarak sunulur.
* Servisler ayrı ayrı kullanılabilir ve güncellenebilir.
* Hatalar izole edilebilir; sistemin genel güvenilirliği artar.

#### 🔹 İletişim ve Veri Formatı

* Tüm istemci–sunucu iletişimi **RESTful API** üzerinden gerçekleşir.
* Veri formatı olarak **JSON** kullanılır.

#### **Avantajlar:**

* Hafif ve okunabilir yapı
* Geliştirici dostu
* Farklı programlama dilleriyle kolay entegrasyon


---

# 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://docs-vpos.halkode.com.tr/sanal-pos-api-mimarisi-hakkinda.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.
