POST api/v1/Comment/{id}
Yorum Göndermek için kullanılan method
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Yorum gönderilecek sayfaya ait 'ID (Guid)' bilgisinin gönderilmeli |
globally unique identifier |
Required |
Body Parameters
Yorum Yapan kişiye ait giriş bilgileri
Comment| Name | Description | Type | Additional information |
|---|---|---|---|
| AdSoyad |
Yorum Yapan Kişiye Ait Ad Soyad Bilgisi |
string |
None. |
|
Yorum Yapan Kişiye Ait Email Bilgisi |
string |
None. |
|
| Yorum |
Yorum İçeriği |
string |
None. |
| Parent |
Başka Bir Kullanıcıya ait olan yorum için cevap veriliyorsa bu alana, 'Cevap Verilen Yorum ID'si' gelmeli. |
globally unique identifier |
None. |
| IPAddress |
Yorum Yapan kişinin IP Adresi |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"adSoyad": "sample string 1",
"eMail": "sample string 2",
"yorum": "sample string 3",
"parent": "4068a8e0-1ee2-4349-8c99-89660c123917",
"ipAddress": "sample string 5"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseOfListOfComments| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| query_date | date |
None. |
|
| description | string |
None. |
|
| items | Collection of Comments |
None. |
|
| Cari | Cari |
None. |
|
| current_page | integer |
Range: inclusive between 0 and 2147483647 |
|
| page_count | integer |
Range: inclusive between 1 and 2147483647 |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"query_date": "2025-12-19T07:40:23.3261235Z",
"description": "sample string 3",
"items": [
{
"$id": "2",
"id": "e9d0fa66-4583-4da9-8e54-206e2ec82218",
"adSoyad": "sample string 3",
"ipAddress": null,
"tarih": "2025-12-19T07:40:23.3261235Z",
"yorum": "sample string 5",
"subComments": [
{
"$ref": "2"
},
{
"$ref": "2"
}
]
},
{
"$ref": "2"
}
],
"cari": {
"$id": "3",
"id": "sample string 1",
"unvan": "sample string 2",
"adSoyad": "sample string 3",
"vergiDairesi": "sample string 4",
"vergiNo": "sample string 5",
"kepAdresi": "sample string 6",
"smsOnay": true,
"emailOnay": true,
"olusturulmaTarih": "2025-12-19T07:40:23.3261235Z",
"onay": true,
"onayTarih": "2025-12-19T07:40:23.3261235Z",
"clientId": "sample string 11",
"clientSecret": "sample string 12",
"servisAdresi": "sample string 13",
"servisKullaniciAdi": "sample string 14",
"servisSifresi": "sample string 15",
"servisMikroVersion": "sample string 16",
"nesKullaniciAdi": "sample string 17",
"nesSifre": "sample string 18"
},
"current_page": 4,
"page_count": 5
}