POST api/RaporMuhasebe/KasaHareketleri
Seçilen tarih aralığındaki tüm kasalarda oluşan hesap hareketleridir.
Request Information
URI Parameters
None.
Body Parameters
RaporAlmaParametreleriTarihliDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| t1 |
rapor parametreleri tarih alt sınırı dd.MM.yyyy formatında string değer olursa DateTime parse edilerek nt1'e atılır |
string |
None. |
| t2 |
rapor parametreleri tarih üst sınırı dd.MM.yyyy formatında string değer olursa DateTime parse edilerek nt2'e atılır |
string |
None. |
| nt1 |
Gönderilen değer doğru şekilde parse edilemezse t1 içinde gönder |
date |
None. |
| nt2 |
Gönderilen değer doğru şekilde parse edilemezse t2 içinde gönder |
date |
None. |
| kampus |
Aktif yerleşke (kampüs) ID |
integer |
None. |
| okul |
Aktif okul ID (kurumID) |
integer |
None. |
| sezon |
Aktif sezon ID |
integer |
None. |
| sirket |
Aktif şirket ID |
integer |
None. |
| appToken |
Mobil uygulama için verilen sabit anahtardır. Her sorguda mutlaka gönderilmesi gerekir |
string |
None. |
| OturumToken |
Oturum açma işlemi başarılı olduğunda sistemin ürettiği kişiye özel anahtar sonraki taleplerde kimlik doğrulaması için gönderilecektir. Oturum zaman aşımı sonrası veya aynı kişinin farklı bir cihazda oturum açması halinde geçersiz olacaktır. |
string |
None. |
Request Formats
application/json, text/json
{
"t1": "sample string 1",
"t2": "sample string 2",
"nt1": "0001-01-01T00:00:00",
"nt2": "0001-01-01T00:00:00",
"kampus": 3,
"okul": 4,
"sezon": 5,
"sirket": 6,
"appToken": "sample string 7",
"OturumToken": "sample string 8"
}
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
RaporKasaDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Rapor |
Seçilen tarih aralığındaki kurum kasa hareket listesidir. |
Collection of KasaHareketiDTO |
None. |
| isError |
Hata var mı |
boolean |
None. |
| ErrorMessage |
Varsa hata mesajı |
string |
None. |
Response Formats
application/json, text/json
{
"Rapor": [
{
"ID": 1,
"OkulID": 2,
"HarcamaSahibiOkulAd": "sample string 3",
"Tarih": "2025-10-27T21:52:43.8517341+03:00",
"EkleyenKullaniciID": 5,
"EkleyenPersonelAd": "sample string 6",
"Miktar": 7.0,
"Aciklama": "sample string 8",
"BelgeSeriNo": "sample string 9",
"BelgeSiraNo": 10,
"KasaHareketBelgeID": 11,
"BelgeTipAd": "sample string 12",
"KasaHareketTipID": 13,
"KasaHareketTipAd": "sample string 14",
"KasaHareketGrupID": 15,
"KasaHareketGrupAd": "sample string 16",
"isGelir": true,
"isOrtak": true,
"isProvizyonda": true,
"KasaID": 20,
"KasaAd": "sample string 21",
"TedarikciID": 22,
"TedarikciAd": "sample string 23",
"PersonelID": 24,
"Personel": "sample string 25",
"SezonID": 26,
"SezonAd": "sample string 27",
"ProvizyonBitisTarihi": "2025-10-27T21:52:43.8517341+03:00"
},
{
"ID": 1,
"OkulID": 2,
"HarcamaSahibiOkulAd": "sample string 3",
"Tarih": "2025-10-27T21:52:43.8517341+03:00",
"EkleyenKullaniciID": 5,
"EkleyenPersonelAd": "sample string 6",
"Miktar": 7.0,
"Aciklama": "sample string 8",
"BelgeSeriNo": "sample string 9",
"BelgeSiraNo": 10,
"KasaHareketBelgeID": 11,
"BelgeTipAd": "sample string 12",
"KasaHareketTipID": 13,
"KasaHareketTipAd": "sample string 14",
"KasaHareketGrupID": 15,
"KasaHareketGrupAd": "sample string 16",
"isGelir": true,
"isOrtak": true,
"isProvizyonda": true,
"KasaID": 20,
"KasaAd": "sample string 21",
"TedarikciID": 22,
"TedarikciAd": "sample string 23",
"PersonelID": 24,
"Personel": "sample string 25",
"SezonID": 26,
"SezonAd": "sample string 27",
"ProvizyonBitisTarihi": "2025-10-27T21:52:43.8517341+03:00"
}
],
"isError": true,
"ErrorMessage": "sample string 2"
}