POST api/Import/GetImportExportList

Request Information

URI Parameters

None.

Body Parameters

ImportExportViewModel
NameDescriptionTypeAdditional information
FromDate

date

None.

ToDate

date

None.

HS_Code

string

None.

Importer_Name

string

None.

Exporter_Name

string

None.

City_State

string

None.

Country_Of_Origin

string

None.

PageNumber

integer

None.

PageSize

integer

None.

ShortKey

string

None.

ShortValue

string

None.

Request Formats

application/json, text/json

Sample:
{
  "FromDate": "2026-01-10T13:08:01.8870801+05:30",
  "ToDate": "2026-01-10T13:08:01.8880771+05:30",
  "HS_Code": "sample string 1",
  "Importer_Name": "sample string 2",
  "Exporter_Name": "sample string 3",
  "City_State": "sample string 4",
  "Country_Of_Origin": "sample string 5",
  "PageNumber": 6,
  "PageSize": 7,
  "ShortKey": "sample string 8",
  "ShortValue": "sample string 9"
}

application/xml, text/xml

Sample:
<ImportExportViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infovores.Models">
  <City_State>sample string 4</City_State>
  <Country_Of_Origin>sample string 5</Country_Of_Origin>
  <Exporter_Name>sample string 3</Exporter_Name>
  <FromDate>2026-01-10T13:08:01.8870801+05:30</FromDate>
  <HS_Code>sample string 1</HS_Code>
  <Importer_Name>sample string 2</Importer_Name>
  <PageNumber>6</PageNumber>
  <PageSize>7</PageSize>
  <ShortKey>sample string 8</ShortKey>
  <ShortValue>sample string 9</ShortValue>
  <ToDate>2026-01-10T13:08:01.8880771+05:30</ToDate>
</ImportExportViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

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