| Requires any of the roles: | Admin, TeamAdmin | Requires the permission: | Tickets.Add |
| POST | /refund/process |
|---|
export class RefundOrderOutcome
{
public status?: string;
public paymentReference?: string;
public paymentId?: string;
public eventId?: number;
public eventName?: string;
public holderName?: string;
public holderEmail?: string;
public amountRefunded?: number;
public partial?: boolean;
public ticketTokenIds?: string[];
public freedSeatIds?: number[];
public borgunRefundTransactionId?: string;
public message?: string;
public constructor(init?: Partial<RefundOrderOutcome>) { (Object as any).assign(this, init); }
}
export class RefundResult
{
public success?: boolean;
public statusCode?: number;
public message?: string;
public refundedCount?: number;
public skippedCount?: number;
public failedCount?: number;
public totalRefunded?: number;
public outcomes?: RefundOrderOutcome[];
public constructor(init?: Partial<RefundResult>) { (Object as any).assign(this, init); }
}
export class RefundRequest
{
public eventId?: number;
public refundAllForEvent?: boolean;
public ticketTokenIds?: string[];
public paymentReferences?: string[];
public reason?: string;
public userId?: number;
public constructor(init?: Partial<RefundRequest>) { (Object as any).assign(this, init); }
}
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 /refund/process HTTP/1.1
Host: stubbur-app.azurewebsites.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<RefundRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
<EventId>0</EventId>
<PaymentReferences xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</PaymentReferences>
<Reason>String</Reason>
<RefundAllForEvent>false</RefundAllForEvent>
<TicketTokenIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</TicketTokenIds>
<UserId>0</UserId>
</RefundRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<RefundResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
<FailedCount>0</FailedCount>
<Message>String</Message>
<Outcomes>
<RefundOrderOutcome>
<AmountRefunded>0</AmountRefunded>
<BorgunRefundTransactionId>String</BorgunRefundTransactionId>
<EventId>0</EventId>
<EventName>String</EventName>
<FreedSeatIds xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:int>0</d4p1:int>
</FreedSeatIds>
<HolderEmail>String</HolderEmail>
<HolderName>String</HolderName>
<Message>String</Message>
<Partial>false</Partial>
<PaymentId>String</PaymentId>
<PaymentReference>String</PaymentReference>
<Status>String</Status>
<TicketTokenIds xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>String</d4p1:string>
</TicketTokenIds>
</RefundOrderOutcome>
</Outcomes>
<RefundedCount>0</RefundedCount>
<SkippedCount>0</SkippedCount>
<StatusCode>0</StatusCode>
<Success>false</Success>
<TotalRefunded>0</TotalRefunded>
</RefundResult>