| POST | /bets/place |
|---|
namespace Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
type BetSource =
| Landbase = 0
| Web = 1
[<AllowNullLiteral>]
type TransactionDtoBase() =
member val transaction_id:String = null with get,set
member val transaction_time:DateTime = new DateTime() with get,set
member val transaction_amount:Decimal = new Decimal() with get,set
member val game_name:String = null with get,set
member val betting_place_id:String = null with get,set
member val betting_terminal_id:String = null with get,set
member val jmbg:String = null with get,set
member val passport_number:String = null with get,set
member val source:BetSource = new BetSource() with get,set
member val identification_document_country:String = null with get,set
member val identification_document_type:String = null with get,set
[<AllowNullLiteral>]
type TicketDto() =
member val sy:String = null with get,set
member val nc:Int32 = new Int32() with get,set
member val ac:Decimal = new Decimal() with get,set
member val e:RecordList<RecordList<IBetEvent>> = null with get,set
type BetType =
| Real = 0
| Promo = 1
[<AllowNullLiteral>]
type BetDto() =
inherit TransactionDtoBase()
member val min_odds:Decimal = new Decimal() with get,set
member val max_odds:Decimal = new Decimal() with get,set
member val min_win:Decimal = new Decimal() with get,set
member val max_win:Decimal = new Decimal() with get,set
member val min_bonus:Decimal = new Decimal() with get,set
member val max_bonus:Decimal = new Decimal() with get,set
member val max_payout:Decimal = new Decimal() with get,set
member val promo_amount:Decimal = new Decimal() with get,set
member val ticket_id:String = null with get,set
member val ticket:TicketDto = null with get,set
member val bet_type:BetType = new BetType() with get,set
[<AllowNullLiteral>]
type ReportBetPlacements() =
member val BetPlacements:RecordList<BetDto> = null with get,set
[<AllowNullLiteral>]
type RecordList<T>() =
inherit ResizeArray<T>()
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/place HTTP/1.1
Host: api.sbbet-prod-mnta.webhop.biz
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<ReportBetPlacements xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel">
<BetPlacements xmlns:d2p1="http://schemas.datacontract.org/2004/07/Starnet.MontenegroTaxationAuthority.Common">
<d2p1:BetDto>
<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_type>Real</d2p1:bet_type>
<d2p1:max_bonus>0</d2p1:max_bonus>
<d2p1:max_odds>0</d2p1:max_odds>
<d2p1:max_payout>0</d2p1:max_payout>
<d2p1:max_win>0</d2p1:max_win>
<d2p1:min_bonus>0</d2p1:min_bonus>
<d2p1:min_odds>0</d2p1:min_odds>
<d2p1:min_win>0</d2p1:min_win>
<d2p1:promo_amount>0</d2p1:promo_amount>
<d2p1:ticket>
<d2p1:ac>0</d2p1:ac>
<d2p1:e xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:ArrayOfanyType>
<d5p1:anyType i:nil="true" />
</d5p1:ArrayOfanyType>
</d2p1:e>
<d2p1:nc>0</d2p1:nc>
<d2p1:sy>String</d2p1:sy>
</d2p1:ticket>
<d2p1:ticket_id>String</d2p1:ticket_id>
</d2p1:BetDto>
</BetPlacements>
</ReportBetPlacements>
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>