Starnet.MontenegroTaxationAuthority.WebApi

<back to all web services

ReportBetPayouts

The following routes are available for this service:
POST/bets/payout
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel;
using Starnet.Common;
using Starnet.MontenegroTaxationAuthority.Common;

namespace Starnet.Common
{
    public partial class RecordList<T>
        : List<T>
    {
    }

}

namespace Starnet.MontenegroTaxationAuthority.Common
{
    public enum BetSource
    {
        Landbase = 0,
        Web = 1,
    }

    public partial interface IBetEvent
    {
    }

    public partial class TransactionDtoBase
    {
        public virtual string transaction_id { get; set; }
        public virtual DateTime transaction_time { get; set; }
        public virtual decimal transaction_amount { get; set; }
        public virtual string game_name { get; set; }
        public virtual string betting_place_id { get; set; }
        public virtual string betting_terminal_id { get; set; }
        public virtual string jmbg { get; set; }
        public virtual string passport_number { get; set; }
        public virtual BetSource source { get; set; }
        public virtual string identification_document_country { get; set; }
        public virtual string identification_document_type { get; set; }
    }

    public partial class WinDto
        : TransactionDtoBase
    {
        public virtual string bet_transaction_id { get; set; }
        public virtual string ticket_id { get; set; }
        public virtual decimal win_odds { get; set; }
        public virtual WinType win_type { get; set; }
        public virtual decimal bonus { get; set; }
        public virtual bool cancel { get; set; }
        public virtual RecordList<IBetEvent> canceled_events { get; set; }
    }

    public enum WinType
    {
        Regular = 0,
        Cashback = 1,
        Cashout = 2,
    }

}

namespace Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel
{
    public partial class ReportBetPayouts
    {
        public virtual RecordList<WinDto> BetPayouts { get; set; }
    }

}

C# ReportBetPayouts 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

HTTP + JSON

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.prod-mnta.webhop.biz 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"betPayouts":[{"bet_transaction_id":"String","ticket_id":"String","win_odds":0,"win_type":0,"bonus":0,"cancel":false,"canceled_events":[{}],"transaction_id":"String","transaction_time":"0001-01-01T00:00:00.0000000Z","transaction_amount":0,"game_name":"String","betting_place_id":"String","betting_terminal_id":"String","jmbg":"String","passport_number":"String","source":0,"identification_document_country":"String","identification_document_type":"String"}]}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}