POST api/DataScrits?customerDatabaseVersionDate={customerDatabaseVersionDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerDatabaseVersionDate

date

Required

Body Parameters

None.

Response Information

Resource Description

ServicesResponse
NameDescriptionTypeAdditional 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>