Versions Compared

Key

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

...

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": 296.45
  }
}

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
  }
}

...