POST api/Import/GetShipmentsRecords
Request Information
URI Parameters
None.
Body Parameters
ShipmentListBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ImporterId | integer |
None. |
|
| FromDate | string |
None. |
|
| ToDate | string |
None. |
|
| Country | string |
None. |
|
| IsImporter | boolean |
None. |
|
| Product_Details | string |
None. |
|
| CompanyName | string |
None. |
|
| HS_Code | string |
None. |
|
| SelectData | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ImporterId": 1,
"FromDate": "sample string 2",
"ToDate": "sample string 3",
"Country": "sample string 4",
"IsImporter": true,
"Product_Details": "sample string 6",
"CompanyName": "sample string 7",
"HS_Code": "sample string 8",
"SelectData": 9
}
application/xml, text/xml
Sample:
<ShipmentListBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infovores.Models"> <CompanyName>sample string 7</CompanyName> <Country>sample string 4</Country> <FromDate>sample string 2</FromDate> <HS_Code>sample string 8</HS_Code> <ImporterId>1</ImporterId> <IsImporter>true</IsImporter> <Product_Details>sample string 6</Product_Details> <SelectData>9</SelectData> <ToDate>sample string 3</ToDate> </ShipmentListBindingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | boolean |
None. |
|
| ReturnCode | integer |
None. |
|
| Message | string |
None. |
|
| Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Response": true,
"ReturnCode": 2,
"Message": "sample string 3",
"Result": {}
}
application/xml, text/xml
Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infovores.Models"> <Message>sample string 3</Message> <Response>true</Response> <Result /> <ReturnCode>2</ReturnCode> </ApiResult>