# 3. Oluştur (Wallet)

## Cüzdan Bazında Limit Oluştur

<mark style="color:yellow;">`POST`</mark>`{{WalletUrl}}/api/v1/limit/by/wallet`&#x20;

{% hint style="info" %}
Not: Bu servisin kullanılabilmesi için **apikeypublic** ve **apiclientpublic** parametrelerinin Header alanına eklenmiş olması zorunludur.

\
[<mark style="color:green;">**WalletAPI Adresi**</mark>](/ortam.md)
{% endhint %}

**Servise gönderilmesi gereken parametreler şu şekildedir:**

<table><thead><tr><th width="162">Parametre</th><th width="79">Tip</th><th width="107">Zorunlu</th><th width="403">Açıklama</th></tr></thead><tbody><tr><td>apikeypublic</td><td>string</td><td>Evet</td><td>API’ye erişim sağlamak için kullanılan genel anahtar bilgisidir.</td></tr><tr><td>apiclientpublic</td><td>string</td><td>Evet</td><td>İstemci uygulamayı tanımlamak için kullanılan genel istemci anahtarıdır.</td></tr></tbody></table>

{% tabs %}
{% tab title="Servis İstek - Json" %}

```json
{
  "WalletId": "0000-0000-0000-0000-0000", // Cüzdan kimlik bilgisi
  "LimitType": "Daily", // Daily = 1 || Monthly = 2
  "LimitCategory": "Deposit", // Deposit = 1, Withdrawal = 2, Transfer = 3, Purchase = 4, Total = 5
  "LimitApproach": "Amount", // Amount = 1, Count = 2
  "Value": 0.01
}
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Servis Cevap - Json" %}

```json
{
    "IsSuccess": true,
    "IsFailure": false,
    "Value": "598a4a0e-9e7a-4f09-9d11-1d7e7ffb584d"
}
```

{% endtab %}
{% endtabs %}

## Servis Cevap

<table><thead><tr><th width="192">Parametre</th><th width="147.89192708333331">Tip</th><th>Açıklama</th></tr></thead><tbody><tr><td>IsFailure</td><td>bool</td><td>İşlem başarısızsa false, başarılıysa true döner.</td></tr><tr><td>IsSuccess</td><td>bool</td><td>İşlem başarılıysa true, başarısızsa false döner.</td></tr><tr><td>Errors</td><td>Array</td><td>Oluşan hata/hatalar varsa, detaylarını içeren dizi (liste) bilgisidir.</td></tr><tr><td>Value</td><td>object</td><td>Servis başarılı ise dönen ana veri nesnesidir (detay nesne yapısıdır).</td></tr></tbody></table>


---

# 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://developer.paywall.one/cuzdan-servisleri/4.-limit-yonetimi/3.-olustur-wallet.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.
