GET ticket_services/TimedTicket?FirstName={FirstName}&LastName={LastName}&Email={Email}

This method will return company attached to the contact and costrate for contact as well as company. The costrate return from this method will be used in other methods to get price for the tickets.

Request Information

Parameters

NameDescriptionAdditional information
FirstName

Define this parameter in the request URI.

LastName

Define this parameter in the request URI.

Email

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "FirstName": "sample string 1",
  "LastName": "sample string 2",
  "Email": "sample string 3",
  "ContactID": 4,
  "ContactCostRateID": 5,
  "Company": [
    {
      "CompanyName": "sample string 1",
      "CompanyID": 2,
      "CompanyCostRateID": 3,
      "IsInvoiceOptionAvailable": true,
      "CreditAvailable": 5.0,
      "IsCompanyTaxExempt": true
    },
    {
      "CompanyName": "sample string 1",
      "CompanyID": 2,
      "CompanyCostRateID": 3,
      "IsInvoiceOptionAvailable": true,
      "CreditAvailable": 5.0,
      "IsCompanyTaxExempt": true
    },
    {
      "CompanyName": "sample string 1",
      "CompanyID": 2,
      "CompanyCostRateID": 3,
      "IsInvoiceOptionAvailable": true,
      "CreditAvailable": 5.0,
      "IsCompanyTaxExempt": true
    }
  ]
}