POST api/excursions/multiday/supplements

Gets all valid supplements for a specific multiday excursion at a specific date

Request Information

URI Parameters

None.

Body Parameters

An instance of ExcursionSupplementByDateMultidayDTO

Cyberlogic.eTourism.Mappings.Operations.Dto.Excursions.ExcursionSupplement.ExcursionSupplementByDateMultidayDTO
NameDescriptionTypeAdditional information
ExcursionId

integer

None.

ExcursionDate

string

None.

CustomerId

integer

None.

CategoryId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ExcursionId": 1,
  "ExcursionDate": "sample string 2",
  "CustomerId": 3,
  "CategoryId": 4
}

text/html

Sample:
{"ExcursionId":1,"ExcursionDate":"sample string 2","CustomerId":3,"CategoryId":4}

application/xml, text/xml

Sample:
<ExcursionSupplementByDateMultidayDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyberlogic.eTourism.Mappings.Operations.Dto.Excursions.ExcursionSupplement">
  <CategoryId>4</CategoryId>
  <CustomerId>3</CustomerId>
  <ExcursionDate>sample string 2</ExcursionDate>
  <ExcursionId>1</ExcursionId>
</ExcursionSupplementByDateMultidayDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

System.Net.Http.HttpResponseMessage
NameDescriptionTypeAdditional information
Version

System.Version

None.

Content

System.Net.Http.HttpContent

None.

StatusCode

System.Net.HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

System.Net.Http.HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.