| POST | /bets/payout |
|---|
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel
Imports Starnet.Common
Imports Starnet.MontenegroTaxationAuthority.Common
Namespace Global
Namespace Starnet.Common
Public Partial Class RecordList(Of T)
Inherits List(Of T)
End Class
End Namespace
Namespace Starnet.MontenegroTaxationAuthority.Common
Public Enum BetSource
Landbase = 0
Web = 1
End Enum
Public Interface IBetEvent
End Interface
Public Partial Class TransactionDtoBase
Public Overridable Property transaction_id As String
Public Overridable Property transaction_time As Date
Public Overridable Property transaction_amount As Decimal
Public Overridable Property game_name As String
Public Overridable Property betting_place_id As String
Public Overridable Property betting_terminal_id As String
Public Overridable Property jmbg As String
Public Overridable Property passport_number As String
Public Overridable Property source As BetSource
Public Overridable Property identification_document_country As String
Public Overridable Property identification_document_type As String
End Class
Public Partial Class WinDto
Inherits TransactionDtoBase
Public Overridable Property bet_transaction_id As String
Public Overridable Property ticket_id As String
Public Overridable Property win_odds As Decimal
Public Overridable Property win_type As WinType
Public Overridable Property bonus As Decimal
Public Overridable Property cancel As Boolean
Public Overridable Property canceled_events As RecordList(Of IBetEvent)
End Class
Public Enum WinType
Regular = 0
Cashback = 1
Cashout = 2
End Enum
End Namespace
Namespace Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel
Public Partial Class ReportBetPayouts
Public Overridable Property BetPayouts As RecordList(Of WinDto)
End Class
End Namespace
End Namespace
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 /bets/payout HTTP/1.1
Host: api.sbbet-prod-mnta.webhop.biz
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<ReportBetPayouts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel">
<BetPayouts xmlns:d2p1="http://schemas.datacontract.org/2004/07/Starnet.MontenegroTaxationAuthority.Common">
<d2p1:WinDto>
<d2p1:betting_place_id>String</d2p1:betting_place_id>
<d2p1:betting_terminal_id>String</d2p1:betting_terminal_id>
<d2p1:game_name>String</d2p1:game_name>
<d2p1:identification_document_country>String</d2p1:identification_document_country>
<d2p1:identification_document_type>String</d2p1:identification_document_type>
<d2p1:jmbg>String</d2p1:jmbg>
<d2p1:passport_number>String</d2p1:passport_number>
<d2p1:source>Landbase</d2p1:source>
<d2p1:transaction_amount>0</d2p1:transaction_amount>
<d2p1:transaction_id>String</d2p1:transaction_id>
<d2p1:transaction_time>0001-01-01T00:00:00</d2p1:transaction_time>
<d2p1:bet_transaction_id>String</d2p1:bet_transaction_id>
<d2p1:bonus>0</d2p1:bonus>
<d2p1:cancel>false</d2p1:cancel>
<d2p1:canceled_events xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:anyType i:nil="true" />
</d2p1:canceled_events>
<d2p1:ticket_id>String</d2p1:ticket_id>
<d2p1:win_odds>0</d2p1:win_odds>
<d2p1:win_type>Regular</d2p1:win_type>
</d2p1:WinDto>
</BetPayouts>
</ReportBetPayouts>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<ResponseStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
<ErrorCode>String</ErrorCode>
<Message>String</Message>
<StackTrace>String</StackTrace>
<Errors>
<ResponseError>
<ErrorCode>String</ErrorCode>
<FieldName>String</FieldName>
<Message>String</Message>
<Meta xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:KeyValueOfstringstring>
<d4p1:Key>String</d4p1:Key>
<d4p1:Value>String</d4p1:Value>
</d4p1:KeyValueOfstringstring>
</Meta>
</ResponseError>
</Errors>
<Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Meta>
</ResponseStatus>