GET api/DataScrits?pastDate={pastDate}¤tDate={currentDate}&vendorName={vendorName}&fetchMasterData={fetchMasterData}&skipRows={skipRows}&takeRows={takeRows}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pastDate | date |
Required |
|
| currentDate | date |
Required |
|
| vendorName | string |
Required |
|
| fetchMasterData | boolean |
Required |
|
| skipRows | integer |
Required |
|
| takeRows | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ServicesResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| VendorInformation | DataTable |
None. |
|
| StreamData | Collection of byte |
None. |
|
| OldDaysData | integer |
None. |
|
| RowCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"VendorInformation": null,
"StreamData": "QEA=",
"OldDaysData": 3,
"RowCount": 4
}
application/xml, text/xml
Sample:
<ServicesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebServiceForInsertData.Models"> <Message>sample string 2</Message> <OldDaysData>3</OldDaysData> <RowCount>4</RowCount> <StreamData>QEA=</StreamData> <Success>true</Success> <VendorInformation i:nil="true" /> </ServicesResponse>