Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name

Description

Type

Required

ticket_group_id

ID of the ticket group for which a tax quote is required.

Integer

Required

quantity

Number of tickets being purchased.

Integer

Required

payment_type

The payment_type to be used on the wholesale portion of the order. If the wholesale portion will be paid via credit_card instead of evopay it is important that it is included in your Tax Quote because the credit card service fee may be taxable and if this is indicated in the tax quote the response will include the service_fee that will be added and the tax amount will be accurate.

String

Optional

retail

An object containing values for the retail sale portion of a Buy/Sell Order. If included, a retail object will be included in the response with tax data for the the retail portion of the order.

Object

Optional

...

Request

Response

POST /v9/tax_quotes

Wholesale Only Request

Code Block
languagejson
{
  "ticket_group_id": 6,
  "quantity": 2,
  "payment_type": "credit_card"
}

Code Block
languagejson
{
  "ticket_group_id": 6,
  "quantity": 2,
  "tax_signature": "9166e5ac-c663-4236-ae8b-76eb890a0468",
  "wholesale": {
    "price": 132.5,
    "subtotal": 265,
    "service_fee": 7.95,
    "tax": 23.5,
    "total": 288296.545
  }
}

Wholesale and Retail Minimal Request

Code Block
languagejson
{
  "ticket_group_id": 6,
  "quantity": 2,
  "retail": {
    "price": 160
  }
}

Code Block
languagejson
{
  "ticket_group_id": 6,
  "quantity": 2,
  "tax_signature": "9166e5ac-c663-4236-ae8b-76eb890a0468",
  "wholesale": {
    "price": 132.5,
    "subtotal": 265,
    "service_fee": 0,
    "tax": 23.5,
    "total": 288.5
  },
  "retail": {
    "price": 160,
    "subtotal": 341,
    "tax": 28.16,
    "total": 369.16
  }
}

Wholesale and Retail Full Request

Code Block
languagejson
{
  "ticket_group_id": 6,
  "quantity": 2,
  "retail": {
    "price": 160,
    "shipping": 15,
    "service_fee": 10,
    "additional_expense": 5,
    "discount": 9,
  }
}

Code Block
languagejson
{
  "ticket_group_id": 6,
  "quantity": 2,
  "tax_signature": "9166e5ac-c663-4236-ae8b-76eb890a0468",
  "wholesale": {
    "price": 132.5,
    "subtotal": 265,
    "service_fee": 0,
    "tax": 23.5,
    "total": 288.5
  },
  "retail": {
    "price": 160,
    "shipping": 15,
    "service_fee": 10,
    "additional_expense": 5,
    "discount": 9,
    "subtotal": 341,
    "tax": 28.16,
    "total": 369.16
  }
}

...