POST api/discoverytours/comms/paymentProcessed

Queues payment receipt email.

Request Information

URI Parameters

None.

Body Parameters

PaymentProcessedModel
NameDescriptionTypeAdditional information
FirstName

FirstName

string

None.

LastName

LastName

string

None.

PaymentAmount

PaymentAmount

decimal number

None.

TourName

TourName

string

None.

TourStartDate

TourStartDate

date

None.

TourGateway

TourGateway

string

None.

TourPrice

TourPrice

decimal number

None.

TotalPayments

TotalPayments

decimal number

None.

Balance

Balance

decimal number

None.

TourPaymentDueDate

TourPaymentDueDate

date

None.

FeesTotal

FeesTotal

decimal number

None.

DiscountsTotal

DiscountsTotal

decimal number

None.

To

To

string

None.

Bcc

Bcc

string

None.

Request Formats

application/json, text/json

Sample:
{
  "firstName": "sample string 1",
  "lastName": "sample string 2",
  "paymentAmount": 3.0,
  "tourName": "sample string 4",
  "tourStartDate": "2025-05-17T08:01:36.1088633Z",
  "tourGateway": "sample string 6",
  "tourPrice": 7.0,
  "totalPayments": 8.0,
  "balance": 9.0,
  "tourPaymentDueDate": "2025-05-17T08:01:36.1088633Z",
  "feesTotal": 11.0,
  "discountsTotal": 12.0,
  "to": "sample string 13",
  "bcc": "sample string 14"
}

application/xml, text/xml

Sample:
<PaymentProcessedModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HSEY.API.Models.DiscoveryTours.Comms">
  <Bcc>sample string 14</Bcc>
  <To>sample string 13</To>
  <Balance>9</Balance>
  <DiscountsTotal>12</DiscountsTotal>
  <FeesTotal>11</FeesTotal>
  <FirstName>sample string 1</FirstName>
  <LastName>sample string 2</LastName>
  <PaymentAmount>3</PaymentAmount>
  <TotalPayments>8</TotalPayments>
  <TourGateway>sample string 6</TourGateway>
  <TourName>sample string 4</TourName>
  <TourPaymentDueDate>2025-05-17T08:01:36.1088633+00:00</TourPaymentDueDate>
  <TourPrice>7</TourPrice>
  <TourStartDate>2025-05-17T08:01:36.1088633+00:00</TourStartDate>
</PaymentProcessedModel>

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.