| Requires any of the roles: | Admin, TeamAdmin | Required permission: | Tickets.Add |
| GET PUT POST | /eventOwnerGiveAwayCards |
|---|
import java.math.*
import java.util.*
import net.servicestack.client.*
open class EventOwnerGiveAwayCardsRequest
{
var phoneNumber:String? = null
var ownerId:Int? = null
var ownerCardTypeId:Int? = null
var holderId:String? = null
var holderName:String? = null
var holderEmail:String? = null
}
open class EventOwnerGiveAwayCardsResult
{
var card:OwnerCards? = null
var statusCode:Int? = null
var message:String? = null
}
open class OwnerCards
{
var id:Int? = null
var ownerId:Int? = null
var ownerCardTypeId:Int? = null
var phoneVerificationId:Int? = null
var initialMaxTickets:Int? = null
var currentAvailableTickets:Int? = null
var timeStampCreatedUTC:Date? = null
var timeStampLastChangedUTC:Date? = null
var timeStampBoughtUTC:Date? = null
var timeStampOrderedUTC:Date? = null
var cardValidFromUTC:Date? = null
var cardValidToUTC:Date? = null
var hasStoreCredit:Boolean? = null
var cardPrice:BigDecimal? = null
var pricePaid:BigDecimal? = null
var initialStoreCredit:BigDecimal? = null
var currentStoreCredit:BigDecimal? = null
var phoneFullVerificationNumber:String? = null
var holderId:String? = null
var holderName:String? = null
var holderEmail:String? = null
var cardPriceCurrency:String? = null
var pricePaidCurrency:String? = null
var deviceId:String? = null
var paymentMethodId:String? = null
var paymentReference:String? = null
var phoneVerificationNumber:String? = null
var paymentPhoneNumber:String? = null
var paymentId:String? = null
var paymentStatus:String? = null
var paymentTokenId:String? = null
var maxTicketsPerEvent:Int? = null
var multiplePaymentsId:String? = null
var imageUrl:String? = null
var backgroundImageUrl:String? = null
}
Kotlin EventOwnerGiveAwayCardsRequest 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 /eventOwnerGiveAwayCards HTTP/1.1
Host: stubbur-app.azurewebsites.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<EventOwnerGiveAwayCardsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
<HolderEmail>String</HolderEmail>
<HolderId>String</HolderId>
<HolderName>String</HolderName>
<OwnerCardTypeId>0</OwnerCardTypeId>
<OwnerId>0</OwnerId>
<PhoneNumber>String</PhoneNumber>
</EventOwnerGiveAwayCardsRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<EventOwnerGiveAwayCardsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
<Card xmlns:d2p1="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel.Types">
<d2p1:BackgroundImageUrl>String</d2p1:BackgroundImageUrl>
<d2p1:CardPrice>0</d2p1:CardPrice>
<d2p1:CardPriceCurrency>String</d2p1:CardPriceCurrency>
<d2p1:CardValidFromUTC>0001-01-01T00:00:00</d2p1:CardValidFromUTC>
<d2p1:CardValidToUTC>0001-01-01T00:00:00</d2p1:CardValidToUTC>
<d2p1:CurrentAvailableTickets>0</d2p1:CurrentAvailableTickets>
<d2p1:CurrentStoreCredit>0</d2p1:CurrentStoreCredit>
<d2p1:DeviceId>String</d2p1:DeviceId>
<d2p1:HasStoreCredit>false</d2p1:HasStoreCredit>
<d2p1:HolderEmail>String</d2p1:HolderEmail>
<d2p1:HolderId>String</d2p1:HolderId>
<d2p1:HolderName>String</d2p1:HolderName>
<d2p1:ID>0</d2p1:ID>
<d2p1:ImageUrl>String</d2p1:ImageUrl>
<d2p1:InitialMaxTickets>0</d2p1:InitialMaxTickets>
<d2p1:InitialStoreCredit>0</d2p1:InitialStoreCredit>
<d2p1:MaxTicketsPerEvent>0</d2p1:MaxTicketsPerEvent>
<d2p1:MultiplePaymentsId>String</d2p1:MultiplePaymentsId>
<d2p1:OwnerCardTypeId>0</d2p1:OwnerCardTypeId>
<d2p1:OwnerId>0</d2p1:OwnerId>
<d2p1:PaymentId>String</d2p1:PaymentId>
<d2p1:PaymentMethodId>String</d2p1:PaymentMethodId>
<d2p1:PaymentPhoneNumber>String</d2p1:PaymentPhoneNumber>
<d2p1:PaymentReference>String</d2p1:PaymentReference>
<d2p1:PaymentStatus>String</d2p1:PaymentStatus>
<d2p1:PaymentTokenId>String</d2p1:PaymentTokenId>
<d2p1:PhoneFullVerificationNumber>String</d2p1:PhoneFullVerificationNumber>
<d2p1:PhoneVerificationId>0</d2p1:PhoneVerificationId>
<d2p1:PhoneVerificationNumber>String</d2p1:PhoneVerificationNumber>
<d2p1:PricePaid>0</d2p1:PricePaid>
<d2p1:PricePaidCurrency>String</d2p1:PricePaidCurrency>
<d2p1:TimeStampBoughtUTC>0001-01-01T00:00:00</d2p1:TimeStampBoughtUTC>
<d2p1:TimeStampCreatedUTC>0001-01-01T00:00:00</d2p1:TimeStampCreatedUTC>
<d2p1:TimeStampLastChangedUTC>0001-01-01T00:00:00</d2p1:TimeStampLastChangedUTC>
<d2p1:TimeStampOrderedUTC>0001-01-01T00:00:00</d2p1:TimeStampOrderedUTC>
</Card>
<Message>String</Message>
<StatusCode>0</StatusCode>
</EventOwnerGiveAwayCardsResult>