POST api/importSupplierRemarks

Imports supplier remarks from mobile contracting.

Request Information

URI Parameters

None.

Body Parameters

The remarks to be imported.

Cyberlogic.eTourism.Mappings.Operations.Dto.Contracts.Hotels.SupplierRemarksRequestDTO
NameDescriptionTypeAdditional information
SupplierId

integer

None.

Remarks

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SupplierId": 1,
  "Remarks": "sample string 2"
}

text/html

Sample:
{"SupplierId":1,"Remarks":"sample string 2"}

application/xml, text/xml

Sample:
<SupplierRemarksRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyberlogic.eTourism.Mappings.Operations.Dto.Contracts.Hotels">
  <Remarks>sample string 2</Remarks>
  <SupplierId>1</SupplierId>
</SupplierRemarksRequestDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

An object of type SupplierRemarksResponseDTO.

Cyberlogic.eTourism.Mappings.Operations.Dto.Contracts.Hotels.SupplierRemarksResponseDTO
NameDescriptionTypeAdditional information
ErrorMessage

string

None.

ErrorStackTrace

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ErrorMessage": "sample string 1",
  "ErrorStackTrace": "sample string 2"
}

text/html

Sample:
{"ErrorMessage":"sample string 1","ErrorStackTrace":"sample string 2"}

application/xml, text/xml

Sample:
<SupplierRemarksResponseDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyberlogic.eTourism.Mappings.Operations.Dto.Contracts.Hotels">
  <ErrorMessage>sample string 1</ErrorMessage>
  <ErrorStackTrace>sample string 2</ErrorStackTrace>
</SupplierRemarksResponseDTO>