POST api/TicketPayments/GiftCard?customerAppID={customerAppID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerAppID

globally unique identifier

None.

Body Parameters

TicketPaymentIn
NameDescriptionTypeAdditional information
TicketID

globally unique identifier

None.

TicketPaymentID

globally unique identifier

None.

Amount

decimal number

None.

CheckNumber

string

None.

GiftCardNumber

string

None.

HomePhone

string

None.

WorkPhone

string

None.

DriversLicense

string

None.

IsPaymentCodeInstructionsConfirmed

boolean

None.

ProductCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "TicketID": "a5f71503-238e-4b1c-b067-d60c4d37f79e",
  "TicketPaymentID": "66ab4d61-341d-4358-9087-6f3448f4c3c9",
  "Amount": 3.0,
  "CheckNumber": "sample string 4",
  "GiftCardNumber": "sample string 5",
  "HomePhone": "sample string 6",
  "WorkPhone": "sample string 7",
  "DriversLicense": "sample string 8",
  "IsPaymentCodeInstructionsConfirmed": true,
  "ProductCode": "sample string 10"
}

application/xml, text/xml

Sample:
<TicketPaymentIn xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Amount>3</Amount>
  <CheckNumber>sample string 4</CheckNumber>
  <DriversLicense>sample string 8</DriversLicense>
  <GiftCardNumber>sample string 5</GiftCardNumber>
  <HomePhone>sample string 6</HomePhone>
  <IsPaymentCodeInstructionsConfirmed>true</IsPaymentCodeInstructionsConfirmed>
  <ProductCode>sample string 10</ProductCode>
  <TicketID>a5f71503-238e-4b1c-b067-d60c4d37f79e</TicketID>
  <TicketPaymentID>66ab4d61-341d-4358-9087-6f3448f4c3c9</TicketPaymentID>
  <WorkPhone>sample string 7</WorkPhone>
</TicketPaymentIn>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.