POST api/discoverytours/comms/travelerBooked

Queues student confirmation email.

Request Information

URI Parameters

None.

Body Parameters

TravelerBookedModel
NameDescriptionTypeAdditional information
StudentProgramId

StudentProgramId

integer

None.

TravelerFirstName

TravelerFirstName

string

None.

TourName

TourName

string

None.

TourStartDate

TourStartDate

date

None.

TourEndDate

TourEndDate

date

None.

TourPrice

TourPrice

decimal number

None.

TourPaymentDueDate

TourPaymentDueDate

date

None.

TourGateway

TourGateway

string

None.

TravelerTypeId

TravelerTypeId

TravelerTypes

None.

To

To

string

None.

Bcc

Bcc

string

None.

Request Formats

application/json, text/json

Sample:
{
  "studentProgramId": 1,
  "travelerFirstName": "sample string 2",
  "tourName": "sample string 3",
  "tourStartDate": "2025-05-18T08:56:58.2866761Z",
  "tourEndDate": "2025-05-18T08:56:58.2866761Z",
  "tourPrice": 6.0,
  "tourPaymentDueDate": "2025-05-18T08:56:58.2866761Z",
  "tourGateway": "sample string 8",
  "travelerTypeId": 1,
  "to": "sample string 9",
  "bcc": "sample string 10"
}

application/xml, text/xml

Sample:
<TravelerBookedModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HSEY.API.Models.DiscoveryTours.Comms">
  <Bcc>sample string 10</Bcc>
  <To>sample string 9</To>
  <StudentProgramId>1</StudentProgramId>
  <TourEndDate>2025-05-18T08:56:58.2866761+00:00</TourEndDate>
  <TourGateway>sample string 8</TourGateway>
  <TourName>sample string 3</TourName>
  <TourPaymentDueDate>2025-05-18T08:56:58.2866761+00:00</TourPaymentDueDate>
  <TourPrice>6</TourPrice>
  <TourStartDate>2025-05-18T08:56:58.2866761+00:00</TourStartDate>
  <TravelerFirstName>sample string 2</TravelerFirstName>
  <TravelerTypeId>Student</TravelerTypeId>
</TravelerBookedModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.