EventPricesSaleschannel
Information about the price for a pricetype for the specific sales channel for an event.
Fields
Field | Description |
---|---|
conditions | Extra conditions for this price. This can be a promocode, a ticketlimit per order, … . Example value:[ { "type": "promocode", "value": "TM13" } ] |
costs | The costs associated with this price Example value:[ { "cost": 1.500000, "costid": 10 }, { "cost": 2.500000, "costid": 11 } ] |
price decimal (required) | The actual price Example value:23.000000 |
saleschannelid int (required) | Saleschannel ID Example value:1269 |
servicecharge decimal (required) | The actual servicecharge Example value:1.500000 |
tickettypepriceid int (required) | Tickettypeprice ID Example value:1269 |
Example
1{
2 "conditions": [
3 {
4 "type": "promocode",
5 "value": "TM13"
6 }
7 ],
8 "costs": [
9 {
10 "cost": 1.500000,
11 "costid": 10
12 },
13 {
14 "cost": 2.500000,
15 "costid": 11
16 }
17 ],
18 "price": 23.000000,
19 "saleschannelid": 1269,
20 "servicecharge": 1.500000,
21 "tickettypepriceid": 1269
22}