EventPricesPricetype

Information about the price for a pricetype for the specific sales channel for an event.

Fields

FieldDescription
pricetypeid
int 
(required)

Pricetype ID

Example value:1269
saleschannels

Price information for this pricetype for the different sales channels

Example value:[ { "costs": [ { "cost": 5.000000, "costid": 0 } ], "price": 30.500000, "saleschannelid": 3, "servicecharge": 1.500000, "tickettypepriceid": 4 } ]
tickettypepriceid
int 
(required)

Ticket type price ID, used to add tickets to an order

Example value:6549

Example

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