GET api/v1/Kupa?token={token}&page={page}&startDate={startDate}&endDate={endDate}&deposited={deposited}
שליפה של התקבולים שהתקבלו ונמצאים בקופה או שהופקדו לבנק
Request Information
URI Parameters
Name | Description | Type/Additional information |
---|---|---|
token | string | |
page |
int32
Default value is 0 |
|
startDate |
The StartDate for a filter on the PaymentDate (= the date of the check or the date of the credit card deposit). If the PaymentDate is null (e.g. for cash receivables) then Caspit uses the receipt date (if not deposied) or the deposit date (if deposited).
|
date |
endDate |
The EndDate for a filter on the PaymentDate (= the date of the check or the date of the credit card deposit). If the PaymentDate is null (e.g. for cash receivables) then Caspit uses the receipt date (if not deposied) or the deposit date (if deposited)
|
date |
deposited |
If true fetch only payments that were depsoited to the bank.
|
boolean
Default value is False |
Body Parameters
None.
Response Description
A list of CaspitKupaLine
A generic object used to return information from Caspit
Response Formats
application/json, text/json
{ "CurrentPage": 1, "TotalCount": 2, "TotalPages": 3, "PrevPageUrl": "sample string 4", "NextPageUrl": "sample string 5", "Results": [ { "DateCreated": "2024-11-21T15:26:31.3258152+02:00", "UserCreated": "sample string 1", "DateUpdated": "2024-11-21T15:26:31.3258152+02:00", "UserUpdated": "sample string 2" }, { "DateCreated": "2024-11-21T15:26:31.3258152+02:00", "UserCreated": "sample string 1", "DateUpdated": "2024-11-21T15:26:31.3258152+02:00", "UserUpdated": "sample string 2" } ] }
application/xml, text/xml
<CaspitResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.caspit.biz/2013/03"> <CurrentPage>1</CurrentPage> <NextPageUrl>sample string 5</NextPageUrl> <PrevPageUrl>sample string 4</PrevPageUrl> <Results> <CaspitBase> <DateCreated>2024-11-21T15:26:31.3258152+02:00</DateCreated> <DateUpdated>2024-11-21T15:26:31.3258152+02:00</DateUpdated> <UserCreated>sample string 1</UserCreated> <UserUpdated>sample string 2</UserUpdated> </CaspitBase> <CaspitBase> <DateCreated>2024-11-21T15:26:31.3258152+02:00</DateCreated> <DateUpdated>2024-11-21T15:26:31.3258152+02:00</DateUpdated> <UserCreated>sample string 1</UserCreated> <UserUpdated>sample string 2</UserUpdated> </CaspitBase> </Results> <TotalCount>2</TotalCount> <TotalPages>3</TotalPages> </CaspitResponse>