# Update section details Change the details of the requested event section Endpoint: PUT /events/{event}/sections/{section} Version: 3.0.0 Security: SessionKey ## Path parameters: - `event` (integer, required) Unique identifier of the requested event - `section` (integer, required) Unique identifier of the requested event section ## Request fields (application/json): - `name` (string, required) Name of the event section - `description` (string) Details of the unique experience customers can expect when purchasing tickets to this event section - `basePrice` (number, required) Cost of tickets to this event section before the application of any price modifiers - `salesStart` (string) The date and time at which tickets for this event section go on sale - `salesEnd` (string) The date and time at which ticket sales for this event section close - `capacity` (integer, required) The maximum number of tickets that can be issued for this event section ## Response 200 fields (application/json): - `self` (string) URI of the event section resource - `name` (string) Name of the event section - `description` (string) Details of the unique experience customers can expect when purchasing tickets to this event section - `basePrice` (number) Cost of tickets to this event section before the application of any price modifiers - `salesStart` (string) The date and time at which tickets for this event section go on sale - `salesEnd` (string) The date and time at which ticket sales for this event section close - `active` (boolean) Whether or not tickets for this event section are currently on sale - `capacity` (integer) The maximum number of tickets that can be issued for this event section - `sold` (integer) The number of tickets sold for this event section - `remaining` (integer) The number of event section tickets available for sale - `reserved` (integer) The number of event section tickets held by ongoing orders - `modifiers` (array) A list of the section's price modifiers. Price modifiers implement special ticket rates including early bird specials, flash sales and group discounts. - `modifiers.self` (string) URI of the price modifier resource - `modifiers.name` (string) Name of the price modifier - `modifiers.priceDelta` (number) The change made to the event section's base price when this modifier is applied - `modifiers.availableFrom` (string) The date and time after which this price modifier will be applied - `modifiers.availableTo` (string) The date and time before which this price modifier will be applied - `modifiers.active` (boolean) Whether or not the price modifier is currently active based on its availability dates - `modifiers.minOrder` (integer) The minimum order size for which this modifier will be applied (for group rates). - `modifiers.maxOrder` (integer) The maximum order size for which this modifier will be applied (for group rates). ## Response 400 fields (application/json): - `message` (string) Reason for the given response. ## Response 403 fields (application/json): - `message` (string) Reason for the given response. ## Response 409 fields (application/json): - `message` (string) Reason for the given response.