# Manuel Çekim

Düzenli ödeme de kayıtlı kartlardan çekim işlemini manuel tetiklemek için kullanılır.

{% hint style="success" %}
<https://api.paynet.com.tr/v1/subscription/manuel_charge>
{% endhint %}

{% tabs %}
{% tab title="İstek Parametreleri" %}

| Parametre İsmi       | Tip    | Zorunlu | Açıklama               |
| -------------------- | ------ | ------- | ---------------------- |
| **subscription\_id** | string | Evet\*  | Düzenli ödeme id       |
| **reference\_no**    | string | Evet\*  | Düzenli ödeme numarası |
| **invoice\_no**      | int    |         | Fatura numarası        |
| {% endtab %}         |        |         |                        |

{% tab title="Dönüş Parametreleri" %}

| Parametre İsmi   | Tip    | Açıklama                                                                                            |
| ---------------- | ------ | --------------------------------------------------------------------------------------------------- |
| data\[]          | dizi   |                                                                                                     |
| -> object\_name  | string | Dönüş yapılan API’nin nesne adı                                                                     |
| -> code          | string | Dönüş sonucunun kodu                                                                                |
| -> message       | string | Dönüş sonuç kodunun açıklaması                                                                      |
| **object\_name** | string | Dönüş yapılan API’nin nesne adı                                                                     |
| **code**         | string | Dönüş sonucunun kodu. [Bknz](https://doc.paynet.com.tr/genel-bilgiler/hata-kodlari/doenues-kodlari) |
| **message**      | string | Dönüş sonuç kodunun açıklaması                                                                      |
| {% endtab %}     |        |                                                                                                     |

{% tab title="Request" %}

```
{  
   "subscription_id":"",
   "reference_no":"90000573",
   "invoice_no":"11400528"
}
```

{% endtab %}

{% tab title="Response" %}

```
{  
   "data":[  
      {  
         "object_name":null,
         "code":1,
         "message":"11400528 numarali siparis için 1 saat 57 dakika sonra deneme yapabilirsiniz"
      }
   ],
   "object_name":null,
   "code":1,
   "message":null
}
```

{% endtab %}

{% tab title="Service Url" %}

| Sistem           | URL                                                                |
| ---------------- | ------------------------------------------------------------------ |
| **Canlı Sistem** | <https://api.paynet.com.tr/v1/subscription/manuel\\_charge>        |
| **Test Sistemi** | ​<https://pts-api.paynet.com.tr​​/v1/subscription/manuel\\_charge> |
| {% endtab %}     |                                                                    |
| {% endtabs %}    |                                                                    |

{% hint style="info" %}
\*subcription\_id veya reference\_no'dan en az birini göndermeniz gerekmektedir.&#x20;
{% endhint %}
