| Requires any of the roles: | Admin, TeamAdmin | Requires the permission: | ReadData |
| POST | /transferTicket/targetTicketTypes | List all ticket types available on the target event with price diff vs source |
|---|
import Foundation
import ServiceStack
public class TransferTargetTicketTypesRequest : Codable
{
public var ticketTokenId:String?
public var toEventId:Int?
public var sectionId:Int?
required public init(){}
}
public class TransferTargetTicketTypesResult : Codable
{
public var ok:Bool?
public var statusCode:Int?
public var code:String?
public var message:String?
public var sourceTicketPrice:Double?
public var sourceTicketTypeName:String?
public var options:[TransferTargetTicketTypeOption] = []
required public init(){}
}
public class TransferTargetTicketTypeOption : Codable
{
public var ownerTicketTypeId:Int?
public var seriesTicketTypeId:Int?
public var name:String?
public var price:Double?
public var direction:String?
public var priceDifference:Double?
public var nameMatchesSource:Bool?
public var blockTransfer:Bool?
public var hidden:Bool?
public var maxTickets:Int?
public var ticketsSold:Int?
public var ticketsLeft:Int?
required public init(){}
}
Swift TransferTargetTicketTypesRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /transferTicket/targetTicketTypes HTTP/1.1
Host: stubbur-app.azurewebsites.net
Accept: application/json
Content-Type: application/json
Content-Length: length
{"ticketTokenId":"String","toEventId":0,"sectionId":0}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"ok":false,"statusCode":0,"code":"String","message":"String","sourceTicketPrice":0,"sourceTicketTypeName":"String","options":[{"ownerTicketTypeId":0,"seriesTicketTypeId":0,"name":"String","price":0,"direction":"String","priceDifference":0,"nameMatchesSource":false,"blockTransfer":false,"hidden":false,"maxTickets":0,"ticketsSold":0,"ticketsLeft":0}]}