EventPricesContingent

Information about the prices for a contingent for an event.

Fields

FieldDescription
contingentid
int 
(required)

Contingent ID

Example value:1269
pricetypes
EventPricesPricetype[] 
(required)

Price information for the pricetypes

Example value:[ { "pricetypeid": 2, "saleschannels": [ { "costs": [ { "cost": 5.000000, "costid": 0 } ], "price": 30.500000, "saleschannelid": 3, "servicecharge": 1.500000, "tickettypepriceid": 4 } ] } ]

Example

 1{
 2    "contingentid": 1269,
 3    "pricetypes": [
 4        {
 5            "pricetypeid": 2,
 6            "saleschannels": [
 7                {
 8                    "costs": [
 9                        {
10                            "cost": 5.000000,
11                            "costid": 0
12                        }
13                    ],
14                    "price": 30.500000,
15                    "saleschannelid": 3,
16                    "servicecharge": 1.500000,
17                    "tickettypepriceid": 4
18                }
19            ]
20        }
21    ]
22}