TicketUserServices

<back to all web services

ReseatQuoteRequest

Requires Authentication
Requires any of the roles:Admin, TeamAdminRequires the permission:ReadData
The following routes are available for this service:
POST/EventSeating/ReseatQuote
ReseatQuoteRequest Parameters:
NameParameterData TypeRequiredDescription
EventIdbodyintNo
MovesbodyList<ReseatMovePair>No
ReseatMovePair Parameters:
NameParameterData TypeRequiredDescription
FromSeatIdformintNo
ToSeatIdformintNo
ToOwnerTicketTypeIdformint?No
ReseatQuoteResult Parameters:
NameParameterData TypeRequiredDescription
OkformboolNo
StatusCodeformintNo
MessageformstringNo
TotalFromPriceformdecimalNo
TotalToPriceformdecimalNo
PriceDifferenceformdecimalNo
DirectionformstringNo
RefundableViaBorgunformboolNo
PaymentReferenceformstringNo
SeatsformList<ReseatSeatQuote>No
ReseatSeatQuote Parameters:
NameParameterData TypeRequiredDescription
FromSeatIdformintNo
ToSeatIdformintNo
TicketTokenIdformstringNo
FromPriceformdecimalNo
ToPriceformdecimalNo
DifferenceformdecimalNo
ToSectionNameformstringNo
ToSeatNameformstringNo
OkformboolNo
MessageformstringNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /EventSeating/ReseatQuote HTTP/1.1 
Host: stubbur-app.azurewebsites.net 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	eventId: 0,
	moves: 
	[
		{
			fromSeatId: 0,
			toSeatId: 0,
			toOwnerTicketTypeId: 0
		}
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	ok: False,
	statusCode: 0,
	message: String,
	totalFromPrice: 0,
	totalToPrice: 0,
	priceDifference: 0,
	direction: String,
	refundableViaBorgun: False,
	paymentReference: String,
	seats: 
	[
		{
			fromSeatId: 0,
			toSeatId: 0,
			ticketTokenId: String,
			fromPrice: 0,
			toPrice: 0,
			difference: 0,
			toSectionName: String,
			toSeatName: String,
			ok: False,
			message: String
		}
	]
}