POST api/Bank/GetGarantiTransactions
Request Information
URI Parameters
None.
Body Parameters
GarantiTransactionsDtoName | Description | Type | Additional information |
---|---|---|---|
Iban | string |
None. |
|
StartDate | string |
None. |
|
EndDate | string |
None. |
|
CompanyId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "iban": "sample string 1", "startDate": "sample string 2", "endDate": "sample string 3", "companyId": "97b4d40e-0bfa-409b-aa33-b1d48bfcf97b" }
application/xml, text/xml
Sample:
<GarantiTransactionsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs.Account"> <CompanyId>97b4d40e-0bfa-409b-aa33-b1d48bfcf97b</CompanyId> <EndDate>sample string 3</EndDate> <Iban>sample string 1</Iban> <StartDate>sample string 2</StartDate> </GarantiTransactionsDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"iban":"sample string 1","startDate":"sample string 2","endDate":"sample string 3","companyId":"97b4d40e-0bfa-409b-aa33-b1d48bfcf97b"}
Response Information
Resource Description
APIResultName | Description | Type | Additional information |
---|---|---|---|
Data | Object |
None. |
|
Message | string |
None. |
|
TotalRecords | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "data": {}, "message": "sample string 2", "totalRecords": 3 }
application/xml, text/xml
Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs"> <Data /> <Message>sample string 2</Message> <TotalRecords>3</TotalRecords> </APIResult>
text/html
Sample:
{"data":{},"message":"sample string 2","totalRecords":3}