TicketUserServices

<back to all web services

EventSeatNameDetailsRequest

Requires Authentication
Requires any of the roles:Admin, TeamAdminRequires the permission:ReadData
The following routes are available for this service:
POST/EventSeats/SeatNameDetails
GET/EventSeats/SeatNameDetails/seat/{SeatId}
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EventSeatNameDetailsRequest:
    seat_id: Optional[int] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EventSeatNameDetails:
    id: Optional[int] = None
    seat_name: Optional[str] = None
    row_id: Optional[int] = None
    row_name: Optional[str] = None
    section_id: Optional[int] = None
    section_name: Optional[str] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EventSeatNameDetailsResult:
    name_details: Optional[EventSeatNameDetails] = None
    status_code: Optional[int] = None
    message: Optional[str] = None

Python EventSeatNameDetailsRequest DTOs

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 /EventSeats/SeatNameDetails HTTP/1.1 
Host: stubbur-autoupdates-live.smartnewapis.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	seatId: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	nameDetails: 
	{
		id: 0,
		seatName: String,
		rowId: 0,
		rowName: String,
		sectionId: 0,
		sectionName: String
	},
	statusCode: 0,
	message: String
}