Requires any of the roles: | Admin, TeamAdmin | Required permission: | Tickets.Add |
POST | /EventSeriesOwnerTicketType/Search/{OwnerId} |
---|
namespace TicketUserServices.ServiceModel
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type EventSeriesOwnerTicketType() =
member val ID:Int32 = new Int32() with get,set
member val Name:String = null with get,set
member val DefaultPrice:Decimal = new Decimal() with get,set
member val SeriesId:Nullable<Int32> = new Nullable<Int32>() with get,set
member val OwnerId:Int32 = new Int32() with get,set
member val TicketTypeListOrder:Int32 = new Int32() with get,set
member val IsActive:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val MaxTickets:Nullable<Int32> = new Nullable<Int32>() with get,set
member val TicketColor:String = null with get,set
member val ShowUsedTickets:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val CanOnlyBeBoughtWithTeamPass:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val IsSpecialTicket:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val SpecialTicketId:String = null with get,set
member val OnlyForKsi:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val TimestampCreated:Nullable<DateTime> = new Nullable<DateTime>() with get,set
member val TimestampLastChanged:Nullable<DateTime> = new Nullable<DateTime>() with get,set
member val TicketsForSalePerEvent:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val ImageUrl:String = null with get,set
member val HolderInfoRequired:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val EventSeriesOwnerSeatingSectionId:Nullable<Int32> = new Nullable<Int32>() with get,set
member val CanOnlyBeBought:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val CanNotBeBought:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val BlockTransfer:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val MaxTicketsPerTransaction:Nullable<Int32> = new Nullable<Int32>() with get,set
member val ForceSingleTickets:Nullable<Boolean> = new Nullable<Boolean>() with get,set
member val OnlyForEvent:Nullable<Int32> = new Nullable<Int32>() with get,set
member val Currency:String = null with get,set
[<AllowNullLiteral>]
type EventSeriesOwnerTicketTypesResult() =
member val Items:ResizeArray<EventSeriesOwnerTicketType> = new ResizeArray<EventSeriesOwnerTicketType>() with get,set
member val StatusCode:Int32 = new Int32() with get,set
member val Message:String = null with get,set
[<AllowNullLiteral>]
type EventSeriesOwnerTicketTypesSearchRequest() =
member val OwnerId:Int32 = new Int32() with get,set
F# EventSeriesOwnerTicketTypesSearchRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /EventSeriesOwnerTicketType/Search/{OwnerId} HTTP/1.1
Host: stubbur-autoupdates-live.smartnewapis.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<EventSeriesOwnerTicketTypesSearchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
<OwnerId>0</OwnerId>
</EventSeriesOwnerTicketTypesSearchRequest>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <EventSeriesOwnerTicketTypesResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel"> <Items xmlns:d2p1="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel.Types"> <d2p1:EventSeriesOwnerTicketType> <d2p1:BlockTransfer>false</d2p1:BlockTransfer> <d2p1:CanNotBeBought>false</d2p1:CanNotBeBought> <d2p1:CanOnlyBeBought>false</d2p1:CanOnlyBeBought> <d2p1:CanOnlyBeBoughtWithTeamPass>false</d2p1:CanOnlyBeBoughtWithTeamPass> <d2p1:Currency>String</d2p1:Currency> <d2p1:DefaultPrice>0</d2p1:DefaultPrice> <d2p1:EventSeriesOwnerSeatingSectionId>0</d2p1:EventSeriesOwnerSeatingSectionId> <d2p1:ForceSingleTickets>false</d2p1:ForceSingleTickets> <d2p1:HolderInfoRequired>false</d2p1:HolderInfoRequired> <d2p1:ID>0</d2p1:ID> <d2p1:ImageUrl>String</d2p1:ImageUrl> <d2p1:IsActive>false</d2p1:IsActive> <d2p1:IsSpecialTicket>false</d2p1:IsSpecialTicket> <d2p1:MaxTickets>0</d2p1:MaxTickets> <d2p1:MaxTicketsPerTransaction>0</d2p1:MaxTicketsPerTransaction> <d2p1:Name>String</d2p1:Name> <d2p1:OnlyForEvent>0</d2p1:OnlyForEvent> <d2p1:OnlyForKsi>false</d2p1:OnlyForKsi> <d2p1:OwnerId>0</d2p1:OwnerId> <d2p1:SeriesId>0</d2p1:SeriesId> <d2p1:ShowUsedTickets>false</d2p1:ShowUsedTickets> <d2p1:SpecialTicketId>String</d2p1:SpecialTicketId> <d2p1:TicketColor>String</d2p1:TicketColor> <d2p1:TicketTypeListOrder>0</d2p1:TicketTypeListOrder> <d2p1:TicketsForSalePerEvent>false</d2p1:TicketsForSalePerEvent> <d2p1:TimestampCreated>0001-01-01T00:00:00</d2p1:TimestampCreated> <d2p1:TimestampLastChanged>0001-01-01T00:00:00</d2p1:TimestampLastChanged> </d2p1:EventSeriesOwnerTicketType> </Items> <Message>String</Message> <StatusCode>0</StatusCode> </EventSeriesOwnerTicketTypesResult>