EventPrices

Information about the prices for an event.

Fields

FieldDescription
contingents
EventPricesContingent[] 
(required)

Price information for the contingents

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

Example

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