Skip to content

Retrieve the offer's price

Request

Attributes details

Name

Officially supported language for the catalog. This language can be used to query events, products, and other resources in the catalog such as offers.

Amount

  • amountInclTax contains the amount including tax

Currency

Only eur is supported for now

Security
JWT
Path
idstring[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0...required

Offer identifier

curl -i -X GET \
  'https://api.demo.korusticket.com/v1/ticketing/offers/{id}/price' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

TicketingOfferPrice resource

Bodyapplication/ld+json
@contextstring or object
One of:
string
@idstringrequired
@typestringrequired
offerstringrequired
amountInclTaxstringrequired
Example:"100.00"
originalAmountInclTaxstring or nullrequired
Example:"120.00"
currencystringrequired
Example:"eur"
purchaseAmountInclTaxstring or nullrequired
Example:"80.00"
amountExclTaxstring or nullrequireddeprecated
Example:"80.00"
Response
{ "@context": "string", "@id": "string", "@type": "string", "offer": "string", "amountInclTax": "100.00", "amountExclTax": "80.00", "originalAmountInclTax": "120.00", "currency": "eur", "purchaseAmountInclTax": "80.00" }