# Geri Bildirim Tipleri

<table><thead><tr><th width="253">Tip</th><th>Açıklama</th></tr></thead><tbody><tr><td>1</td><td>Sanal Pos - Başarılı Ödeme</td></tr><tr><td>2</td><td>Sanal Pos - Başarısız Ödeme</td></tr><tr><td>3</td><td>Sanal Pos - İade</td></tr><tr><td>4</td><td>Sanal Pos - Kısmi İade</td></tr><tr><td>5</td><td>Sanal Pos - İptal</td></tr><tr><td>6</td><td>Apm - Başarılı Ödeme</td></tr><tr><td>7</td><td>Apm - Başarısız Ödeme</td></tr><tr><td>8</td><td>Apm - İade</td></tr><tr><td>9</td><td>Apm - Kısmi İade</td></tr><tr><td>10</td><td>Payout - Başarılı Ödeme</td></tr><tr><td>11</td><td>Payout - Başarısız Ödeme</td></tr><tr><td>12</td><td>Fiziksel Pos - Başarılı Ödeme</td></tr><tr><td>13</td><td>Fiziksel Pos - Başarısız Ödeme</td></tr><tr><td>14</td><td>Fiziksel Pos - İptal</td></tr><tr><td>15</td><td>Apm - İptal</td></tr><tr><td>16</td><td>Sanal Pos - Başarılı 3D Model Geri Bildirimi</td></tr><tr><td>17</td><td>Fraud Gözden Geçirme Sonucu</td></tr></tbody></table>

{% code lineNumbers="true" %}

```csharp
public enum GeneralCallbackTypeEnum
{
    // VPos
    SuccessPayment = 1,
    UnSuccessPayment = 2,
    Refund = 3,
    PartialRefund = 4,
    Cancel = 5,

    // Apm
    ApmForSuccessPayment = 6,
    ApmForUnSuccessPayment = 7,
    ApmForRefund = 8,
    ApmForPartialRefund = 9,

    // Payout
    PayoutForSuccessPayment = 10,
    PayoutForUnSuccessPayment = 11,

    // PhysicalPos
    PhysicalPosForSuccessPayment = 12,
    PhysicalPosForUnSuccessPayment = 13,
    PhysicalPosForCancel = 14,
    ApmForCancel = 15,
    
    // Vpos
    ForSuccess3DModelCallback = 16,
    
    // Fraud
    FraudForReviewPayment = 17
}
```

{% endcode %}


---

# 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/sistem-verileri/geri-bildirim-tipleri.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.
