POST api/Manifest/CheckEIRNo

Request Information

URI Parameters

None.

Body Parameters

ManifestEIRNoRequestDTO
NameDescriptionTypeAdditional information
EIRRegNo

string

None.

Request Formats

application/json, text/json

Sample:
{
  "EIRRegNo": "sample string 1"
}

application/xml, text/xml

Sample:
<ManifestEIRNoRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.DTO">
  <EIRRegNo>sample string 1</EIRRegNo>
</ManifestEIRNoRequestDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ManifestEIRNoRequestDTO'.

Response Information

Resource Description

Collection of ManifestEIRNoRequestDTO
NameDescriptionTypeAdditional information
EIRRegNo

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "EIRRegNo": "sample string 1"
  },
  {
    "EIRRegNo": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfManifestEIRNoRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.DTO">
  <ManifestEIRNoRequestDTO>
    <EIRRegNo>sample string 1</EIRRegNo>
  </ManifestEIRNoRequestDTO>
  <ManifestEIRNoRequestDTO>
    <EIRRegNo>sample string 1</EIRRegNo>
  </ManifestEIRNoRequestDTO>
</ArrayOfManifestEIRNoRequestDTO>