Web integration API 1.8

From BetgamesTV
Jump to navigation Jump to search

BetGames.TV Partner API

API process flow.png

API process flow.

Game communication processes:

  1. Iframe game client sends requests to BetGames.TV server;
  2. BetGames.TV server communicates with Partner API to withdraw / deposit players money.

In order to integrate BetGames.TV game client, partner (you) is obliged to implement simple XML-based API described in this document.

Integration involves these steps:

  1. Implementation of Partner API in Partner testing environment;
  2. Passing all the test procedures with BetGames.TV engineer (note: before testing procedures please provide a test token page);
  3. Customization of html iframe client in compliance with Partner web-portal design (note: please check "Proper Way to Present Betgames.tv on your website.pdf");
  4. Launching in a production environment.

This document describes Partner API.

Token system

On game initialization Partner server generates alphanumeric string called Token and passes it to the client javascript code. This string should satisfy these requirements:

  1. Contain both letters and digits;
  2. Be minimum 10 symbols and maximum 100 symbols lenght;
  3. Be unique for each player;
  4. Expire after a short period of time (should be configurable, by default 1 minute, but for production has to be changed to 60 minutes).

Important: each successful API method call refreshes token lifetime.

Partner is responsible for implementing token logic.

Token correctness is being tested by BetGames.TV side during testing procedure.

Security check

In order to check the validity of the requests and responses, all the xml packets are being signed. Packets contain “signature” and “time” parameters. Before the request is being proceeded, API should perform validity check of the signature. And perform the validity check of the request creation time. Responses are being signed and checked the same way.

Time parameter

All the requests and responses should contain time parameter. It is equal to the number of seconds since Unix Epoch (January 1 1970 00:00:00 GMT). In PHP there is a method time(), which returns this value. Other programming languages also have similar methods. During XML packet validation, this value should also be checked. If the time of XML packet creation till this validation is more than 60 seconds, this packet is considered to be expired and invalid. The proper error should be returned.

Request example:

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <method>ping</method>
    <token>-</token>
    <signature>6094dc0397895ee55c93b01f54477527</signature>
    <time>1423124661</time>
    <params></params>
</root>

Example of successful response:

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <method>ping</method>
    <token>-</token>
    <success>1</success>
    <error_code>0</error_code>
    <error_text></error_text>
    <time>1423124663</time>
    <params></params>
    <signature>dee0dda6b4adc6c4e0f67c7e19a3ad0b</signature>
</root>

Signature parameter

Signature is being calculated as MD5 sum of all the parameters and secret key concatenation. Secret key is being generated for each partner personally.

Singnature generation is being explained in following example. We need to sign the following response:

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <method>get_account_details</method>
    <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
    <success>1</success>
    <error_code>0</error_code>
    <error_text></error_text>
    <time>1423127764</time>
    <params>
        <user_id>150205</user_id>
        <username>test_player</username>
        <currency>eur</currency>
        <info>Vilnius, LT</info>
    </params>
</root>
  1. Assemble the parameters string (it's important to assemble parameters in the right order): methodget_account_detailstokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423127764user_id150205usernametest_playercurrencyeurinfoVilnius, LT Response string must be builded in the same order as XML elements are. Additional parameters (params) are being added in the end of this string in the same order they are going in the request.
  2. Add current partner secret key. We receive the following string: methodget_account_detailstokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423127764user_id150205usernametest_playercurrencyeurinfoVilnius, LT1JD4U-S7XB6-GKITA-DQXHP
  3. Calculate MD5 for the received string: ca9fd88a49f039f5bde952c31247f09a
  4. Singing the response:
<?xml version="1.0" encoding="UTF-8"?>
<root>
    <method>get_account_details</method>
    <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
    <success>1</success>
    <error_code>0</error_code>
    <error_text></error_text>
    <time>1423127764</time>
    <params>
        <user_id>150205</user_id>
        <username>test_player</username>
        <currency>eur</currency>
        <info>Vilnius, LT</info>
    </params>
    <signature>ca9fd88a49f039f5bde952c31247f09a</signature>
</root>

Signature validation is being made in similar way. In example you received the following request:

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <method>ping</method>
    <token>-</token>
    <time>1423124660</time>
    <params></params>
    <signature>6094dc0397895ee55c93b01f54477527</signature>
</root>
  1. Assemble parameters string without “signature” parameter: methodpingtoken-time1423124660
  2. Add the secret key: methodpingtoken-time14231246601JD4U-S7XB6-GKITA-DQXHP
  3. Count MD5: 6094dc0397895ee55c93b01f54477527
  4. This md5 sum is equal to the signature parameter. So the validity check is passed.

XML methods. Common notes

BetGames.TV server uses XML to communicate with Partner API via a HttpWebRequest. XML structure is described below. XML structure differs in accordance to method being called.

XML packet specifications

All requests and responses should be wrapped in root packet:

<?xml version="1.0" encoding="UTF-8"?>
<root>
</root>

Methods parameters

Required request params:

Example:

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <method>get_account_details</method>
    <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
    <signature>59514741eae44d72480de631b98f51ce</signature>
    <time>1423127764</time>
    <params></params>
</root>

Required response params:

  • method (varchar) – called method name;
  • token (varchar) — token from the request;
  • success (int) – 1 or 0, response status, in case of success returns 1;
  • error_code (int) – Partner internal error code. In case of success returns 0; Note: code 404 is prohibited (being used by BetGames.TV in case of network connection problems);
  • error_text (varchar) – text description of the error;
  • params — packet for answer additional params;

Example:

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <method>get_account_details</method>
    <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
    <success>1</success>
    <error_code>0</error_code>
    <error_text></error_text>
    <time>1423127764</time>
    <params>
        <user_id>150205</user_id>
        <username>test_player</username>
        <currency>eur</currency>
        <info>Vilnius, LT</info>
    </params>
    <signature>ca9fd88a49f039f5bde952c31247f09a</signature>
</root>

Common notes and recommendations

Bet structure

For each bet_id, there will be only one transaction_id for payin and only one transaction_id for payout. It could be described as one row in DB table, for example: (bet_id, transaction_payin_id, transaction_payout_id). Field type for bet_id and transaction_id in database must be BIGINT UNSIGNED.

Transaction_bet_payin method checks order

Firstly check if this transaction already exists in your DB. If so don't update player balance, and return success status. Elsewhere check players balance and respond accordingly. For example, if the system repeats same transaction twice in a row and it withdraws the whole balance, your API would respond successfully both times. Elsewhere if balance check is on the first place, second call would return error which is wrong behavior.

Text encoding

To avoid any encoding problems, please provide errors text and user names in Latin symbols only. For example:

Do:

<error_text>Bet not found.</error_text>
<username>john_doe</username>
<info>Beijing</info>

And do NOT:

<error_text>Įvyko klaida</error_text>
<username>Кирилл_Ш</username>
<info>北京</info>

On player logout in partner system

If the player logs out from the Partner's system, current player's token should become invalid.

Payout's retry policy

If the partner server is unavailable or responds with incorrect error code to payout requests, Betgames will repeat payouts until successful response is received. To save traffic and prevent from creating big load for partners' systems, the time interval between payouts increases and will be repeated in following order:

  • 5 times every 5 seconds
  • 5 times every minute
  • 5 times every 2 minutes
  • 5 times every 5 minutes
  • 5 times every 10 minutes
  • every hour (until we cancel the payout or partner fixes issue on their side)
  • API Methods

    Method ping

    Description: Method is being used for detecting API service availability status.

    Flowchart diagram:

    Ping new2.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>ping</method>
        <token>-</token>
        <time>14231246601</time>
        <params></params>
        <signature>4cb7b36895e86c22ea2bc9120e3488da</signature>
    </root>
    
    • Signature calculation string:
      methodpingtoken-time142312466011JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      4cb7b36895e86c22ea2bc9120e3488da

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>ping</method>
        <token>-</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423124663</time>
        <params></params>
        <signature>dee0dda6b4adc6c4e0f67c7e19a3ad0b</signature>
    </root>
    
    • Signature calculation string:
      methodpingtoken-success1error_code0error_texttime14231246631JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      dee0dda6b4adc6c4e0f67c7e19a3ad0b

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>ping</method>
        <token>-</token>
        <success>0</success>
        <error_code>1</error_code>
        <error_text>wrong signature</error_text>
        <time>1423124663</time>
        <signature>2f731bac67c9a363602f773ac71d12b3</signature>
    </root>
    
    • Signature calculation string:
      methodpingtoken-success0error_code1error_textwrong signaturetime14231246631JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      2f731bac67c9a363602f773ac71d12b3

    Method get_account_details

    Description: Method is called when the player logs in. Method passes the token generated by Partner server. Method returns players data in case player is logged in to the Partner website and token is valid. Player currency should be the same as in Partner database.

    Flowchart diagram:

    Get account details new.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>get_account_details</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <signature>59514741eae44d72480de631b98f51ce</signature>
        <time>1423127764</time>
        <params></params>
    </root>
    
    • Signature calculation string:
      methodget_account_detailstokenc2696fe0-eba8-012f-596c-528c3f9e4820time14231277641JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      59514741eae44d72480de631b98f51ce

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>get_account_details</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423127764</time>
        <params>
            <user_id>150205</user_id>
            <username>test_player</username>
            <currency>eur</currency>
            <info>Vilnius, LT</info>
        </params>
        <signature>ca9fd88a49f039f5bde952c31247f09a</signature>
    </root>
    
    • Signature calculation string:
      methodget_account_detailstokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423127764user_id150205usernametest_playercurrencyeurinfoVilnius, LT1JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      ca9fd88a49f039f5bde952c31247f09a

     

    Required Response Child-Elements for <params>
    Field Type Description
    user_id varchar User_id created at partner side.
    username varchar Username at partner side.
    Important: this field is optional and can have value "-".
    currency varchar Please specify the list of the available currencies from ISO 4217 currency list.
    info varchar Additional information about the user.
    Important: this field is optional and can have value "-".

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>get_account_details</method>
        <token>a2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>0</success>
        <error_code>3</error_code>
        <error_text>invalid token</error_text>
        <time>1423147340</time>
        <signature>bec2559abe0c28466027e383ac86ce19</signature>
    </root>
    
    • Signature calculation string:
      methodget_account_detailstokena2696fe0-eba8-012f-596c-528c3f9e4820success0error_code3error_textinvalid tokentime14231473401JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      bec2559abe0c28466027e383ac86ce19

    Method refresh_token

    Description: Method validates the token. This method is being called when the player is idle.

    Flowchart diagram:

    Refresh token new.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>refresh_token</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <signature>122ed52b84777c09a56bc5b0e777a174</signature>
        <time>1423127764</time>
        <params></params> 
    </root>
    
    • Signature calculation string:
      methodrefresh_tokentokenc2696fe0-eba8-012f-596c-528c3f9e4820time14231277641JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      122ed52b84777c09a56bc5b0e777a174

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>refresh_token</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423125818</time>
        <params></params>
        <signature>1cf45d34ef9951c5e9ae5494312f095b</signature>
    </root>
    
    • Signature calculation string:
      methodrefresh_tokentokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime14231258181JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      1cf45d34ef9951c5e9ae5494312f095b

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>refresh_token</method>
        <token>abc-eba8-012f-596c-528c3f9e4820</token>
        <success>0</success>
        <error_code>3</error_code>
        <error_text>invalid token</error_text>
        <time>1423229288</time>
        <signature>e4546f45daec49d6dadf751eb08c17c9</signature>
    </root>
    
    • Signature calculation string:
      methodrefresh_tokentokenabc-eba8-012f-596c-528c3f9e4820success0error_code3error_textinvalid tokentime14232292881JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      e4546f45daec49d6dadf751eb08c17c9

    Method request_new_token

    Description:Method creates and returns new valid token, in the same time old token becomes invalid.

    Description: Method returns valid token. If current token is live, you have to refresh and return it.

    Flowchart diagram:

    Request new token new.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>request_new_token</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <signature>8106b7478f92a57f3f6b725f6007e5a8</signature>
        <time>1423126078</time>
        <params></params>
    </root>
    
    • Signature calculation string:
      methodrequest_new_tokentokenc2696fe0-eba8-012f-596c-528c3f9e4820time14231260781JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      8106b7478f92a57f3f6b725f6007e5a8

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>request_new_token</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423126078</time>
        <params>
            <new_token>c2696fe0-eba8-012f-596c-528c3f9e4820</new_token>
        </params>
        <signature>b8cf58866581b73797305b2cb9ed7673</signature>
    </root>
    
    • Signature calculation string:
      methodrequest_new_tokentokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423126078new_tokenc2696fe0-eba8-012f-596c-528c3f9e48201JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      b8cf58866581b73797305b2cb9ed7673

     

    Required Response Child-Elements for <params>
    Field Type Description
    new_token varchar You have to refresh current token lifetime and return it as new_token.

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>request_new_token</method>
        <token>abc-eba8-012f-596c-528c3f9e4820</token>
        <success>0</success>
        <error_code>3</error_code>
        <error_text>invalid token</error_text>
        <time>1345808201</time>
        <signature>f0dcd1cbc56e880230268b907e6baba6</signature>
    </root>
    
    • Signature calculation string:
      methodrequest_new_tokentokenabc-eba8-012f-596c-528c3f9e4820success0error_code3error_textinvalid tokentime13458082011JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      f0dcd1cbc56e880230268b907e6baba6

    Method get_balance

    Description: Method returns current player balance in players currency.

    Flowchart diagram:

    Get balance new.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>get_balance</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <signature>1f1c4dbe2d6fe35ccd7b0cb3081c2c5f</signature>
        <time>1423126078</time>
        <params></params>
    </root>
    
    • Signature calculation string:
      methodget_balancetokenc2696fe0-eba8-012f-596c-528c3f9e4820time14231260781JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      1f1c4dbe2d6fe35ccd7b0cb3081c2c5f

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>get_balance</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423126129</time>
        <params>
            <balance>50000</balance>
        </params>
        <signature>9f336db3614e5105cd5c7b32de5d65e6</signature>
    </root>
    
    • Signature calculation string:
      methodget_balancetokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423126129balance500001JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      9f336db3614e5105cd5c7b32de5d65e6

     

    Required Response Child-Elements for <params>
    Field Type Description
    balance int Current player balance.
    Important: amount must be in cents.

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>get_balance</method>
        <token>abc-eba8-012f-596c-528c3f9e4820</token>
        <success>0</success>
        <error_code>3</error_code>
        <error_text>invalid token</error_text>
        <time>1423229288</time>
        <signature>9e784891fb366edcc8e4f6e85b5cd02e</signature>
    </root>
    
    • Signature calculation string:
      methodget_balancetokenabc-eba8-012f-596c-528c3f9e4820success0error_code3error_textinvalid tokentime14232292881JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      9e784891fb366edcc8e4f6e85b5cd02e

    Method transaction_bet_payin

    Description: Method for money withdrawals from Partners player account for making bets. If there are not enough money, then Partner API should return insufficient funds error.

    • We will not call get_balance (to check if player has enough funds to place a bet) before transaction_bet_payin for Speedy 7 game, so you need to ensure the balance checking is done properly on your side. In case the player does not have enough funds/balance you should return error response with error code 703 and a proper message "Insufficient balance" shall be displayed.
    • IMPORTANT! API requests for some features and games are sent parallel/asynchronously. Make sure your API handles asynchronous API requests well and won't accept pay-in if the player doesn't have enough balance.

    Flowchart diagram:

    Payin.drawio.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_payin</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <signature>a91c39b7028bde988d1a6858fafd545a</signature>
        <time>1423127617</time>
        <params>
            <amount>1234</amount>
            <currency>eur</currency>
            <bet_id>123456</bet_id>
            <transaction_id>246912</transaction_id>
            <retrying>0</retrying>
            <bet>Selected ball will be dropped with No. 1,...,42(1, 3, 10)</bet>
            <odd>5.70</odd>
            <bet_time>2015-02-05 09:13:37</bet_time>
            <game>1</game>
            <draw_code>71304050073</draw_code>
            <draw_time>2015-02-05 09:15:00</draw_time>
        </params>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_payintokenc2696fe0-eba8-012f-596c-528c3f9e4820time1423127617amount1234currencyeurbet_id123456transaction_id246912retrying0betSelected ball will be dropped with No. 1,...,42(1, 3, 10)odd5.70bet_time2015-02-05 09:13:37game1draw_code71304050073draw_time2015-02-05 09:15:001JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      a91c39b7028bde988d1a6858fafd545a

     

    Required Request Child-Elements for <params>
    Field Type Description
    amount int Amount to withdraw from account.
    Important: amount is in cents.
    currency varchar Currency code from the ISO 4217 currency list.
    bet_id bigint unsigned Unique bet id on BetGames.TV server.
    transaction_id bigint unsigned Unique transaction id on BetGames.TV server. Partner is obliged to store processed transaction ids. If the request contains the same transaction id, Partner should return success status, but do not withdraw money from the balance again.
    retrying int Informational parameter. If it is equal 1, it means BetGames.TV server tries to resend request. For example, because of the network connection problems.

     

    Optional Request Child-Elements for <params> (enabled by default, could be disabled by Partner request)
    Field Type Description
    bet varchar Bet name on default Partner's language, encoding - UTF-8.
    odd decimal Outcome value.
    bet_time datetime Time when the bet has been placed. Timezone - UTC+0.
    game int or varchar By default is returned as Game ID (integer value). Can be returned as game name on default Partner's language (encoding - UTF-8) by Partner request.
    draw_code varchar Draw code number.
    draw_time datetime Scheduled start time of the draw. Timezone - UTC+0.
    is_mobile int Parameter to distinguish platform ("1"-mobile). This parameter appears in transaction_bet_payin requests only when you push it into iFrame JavaScript launch code.
    Note: this parameter isn't being used for desktop platform.

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_payin</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423127617</time>
        <params>
            <balance_after>48766</balance_after>
            <already_processed>0</already_processed>
            <aams>S:M42BF200DC66DFQG T:N42BF200EBDD0BKJ</aams>
        </params>
        <signature>1a4938e2e6804c88d708f9ff8d323c64</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_payintokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423127617balance_after48766already_processed0aamsS:M42BF200DC66DFQG T:N42BF200EBDD0BKJ1JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      1a4938e2e6804c88d708f9ff8d323c64

     

    Required Response Child-Elements for <params>
    Field Type Description
    balance_after int Player balance after the transaction.
    Important: amount must be in cents.
    already_processed int Equals 1 if the transaction was already processed.

     

    Optional Response Child-Elements for <params>
    Field Type Description
    AAMS code varchar Key for each bet on the Bet History page and Recent Bets block.

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_payin</method>
        <token>abc-eba8-012f-596c-528c3f9e4820</token>
        <success>0</success>
        <error_code>3</error_code>
        <error_text>invalid token</error_text>
        <time>1423229288</time>
        <signature>06a2d3c9d7448ee6b0fad54d00cdb946</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_payintokenabc-eba8-012f-596c-528c3f9e4820success0error_code3error_textinvalid tokentime14232292881JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      06a2d3c9d7448ee6b0fad54d00cdb946

    Method transaction_bet_subscription_payin

    Description: Method for accepting subscription payin.

    Transaction_bet_subscription_payin is used for betting on future draws. Players will have a possibility to place the same bet for several upcoming draws (i.e. 10 draws) in static odds games, so they could "buy in bulk".

    Basically transaction_bet_subscription_payin method, does the same logic as transaction_bet_payin method. The only difference is that:

    • In case of transaction_bet_payin player is able to make only single bet.
    • In case of transaction_bet_subscription_payin player is able to make several bets per 1 payin.
    • IMPORTANT! API requests for some features and games are sent parallel/asynchronously. Make sure your API handles asynchronous API requests well and won't accept pay-in if the player doesn't have enough balance.

    Flowchart diagram:

    Transaction bet subscription payin.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_subscription_payin</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <time>1528269625</time>
        <signature>2beeb78d9f2f9b488fb8f8ae5211ff4f</signature>
        <params>
            <amount>6170</amount>
            <currency>eur</currency>
            <subscription_id>123456</subscription_id>
            <subscription_time>2018-06-06 07:20:25</subscription_time>
            <odd>
                <name>SUM of the numbers on the dropped YELLOW balls will be LESS than 73.5</name>
                <value>1.9</value>
                <translation>SUM of the numbers on the dropped YELLOW balls will be LESS than 73.5</translation>
            </odd>
            <is_mobile>0</is_mobile>
            <game>
                <id>1</id>
                <name>Lucky 7</name>
                <translation>Lucky 7</translation>
            </game>
            <bet>
                <bet_id>123456</bet_id>
                <transaction_id>123456</transaction_id>
                <amount>1234</amount>
                <draw>
                <code>71304050073</code>
                <time>2018-06-06 07:23:25</time>
                </draw>
            </bet>
            <bet>
                <bet_id>123457</bet_id>
                <transaction_id>123457</transaction_id>
                <amount>1234</amount>
                <draw>
                <code>71304050074</code>
                <time>2018-06-06 07:23:25</time>
                </draw>
            </bet>
            <bet>
                <bet_id>123458</bet_id>
                <transaction_id>123458</transaction_id>
                <amount>1234</amount>
                <draw>
                <code>71304050075</code>
                <time>2018-06-06 07:23:25</time>
                </draw>
            </bet>
            <bet>
                <bet_id>123459</bet_id>
                <transaction_id>123459</transaction_id>
                <amount>1234</amount>
                <draw>
                <code>71304050076</code>
                <time>2018-06-06 07:23:25</time>
                </draw>
            </bet>
            <bet>
                <bet_id>123460</bet_id>
                <transaction_id>123460</transaction_id>
                <amount>1234</amount>
                <draw>
                <code>71304050077</code>
                <time>2018-06-06 07:23:25</time>
                </draw>
            </bet>
        </params>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_subscription_payintokenc2696fe0-eba8-012f-596c-528c3f9e4820time1528269625amount6170currencyeursubscription_id123456subscription_time2018-06-06 07:20:25oddnameSUM of the numbers on the dropped YELLOW balls will be LESS than 73.5value1.9translationSUM of the numbers on the dropped YELLOW balls will be LESS than 73.5is_mobile0gameid1nameLucky 7translationLucky 7betbet_id123456transaction_id123456amount1234drawcode71304050073time2018-06-06 07:23:25bet_id123457transaction_id123457amount1234drawcode71304050074time2018-06-06 07:23:25bet_id123458transaction_id123458amount1234drawcode71304050075time2018-06-06 07:23:25bet_id123459transaction_id123459amount1234drawcode71304050076time2018-06-06 07:23:25bet_id123460transaction_id123460amount1234drawcode71304050077time2018-06-06 07:23:251JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      2beeb78d9f2f9b488fb8f8ae5211ff4f

     

    Required Request Child-Elements for <params>
    Field Type Description
    amount int Total subscription amount to withdraw from account.
    Important: amount is in cents.
    currency varchar Currency code from the ISO 4217 currency list.
    subscription_id bigint unsigned Unique subscription id on BetGames.TV server.
    subscription_time string Subsciption creation time, UTC.
    odd / name string Outcome name in English.
    odd / value float Outcome value.
    odd / translation string Outcome name in player's language.
    is_mobile bool-int Parameter to distinguish platform ("1"-mobile). This parameter appears in transaction_bet_payin requests only when you push it into iFrame JavaScript launch code.
    Note: this parameter isn't being used for desktop platform.
    game / id int or varchar Game ID in Betgames system - List of game ID's.
    game / name string Game name in English.
    game / translation string Game name in player's language.
    bet / bet_id bigint unsigned Unique bet id on BetGames.TV server.
    bet / transaction_id bigint unsigned Unique transaction id on BetGames.TV server. Partner is obliged to store processed transaction ids. If the request contains the same transaction id, Partner should return success status, but do not withdraw money from the balance again.
    bet / amount int Amount of the exact bet to withdraw from account.
    Important: amount is in cents.
    bet / draw / code string Draw code number.
    bet / draw / time string Draw start time, UTC.

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_subscription_payin</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423127617</time>
        <params>
            <balance_after>48766</balance_after>
            <already_processed>0</already_processed>
        </params>
        <signature>bb15c611416cf9512e70bf3fb7463dcb</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_subscription_payintokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423127617balance_after48766already_processed01JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      bb15c611416cf9512e70bf3fb7463dcb

     

    Required Response Child-Elements for <params>
    Field Type Description
    balance_after int Player balance after the transaction.
    Important: amount must be in cents.
    already_processed int Equals 1 if the transaction was already processed.

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_subscription_payin</method>
        <token>abc-eba8-012f-596c-528c3f9e4820</token>
        <success>0</success>
        <error_code>3</error_code>
        <error_text>invalid token</error_text>
        <time>1423229288</time>
        <signature>104fa720c8e9d44db7a7cb58896bd442</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_subscription_payintokenabc-eba8-012f-596c-528c3f9e4820success0error_code3error_textinvalid tokentime14232292881JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      104fa720c8e9d44db7a7cb58896bd442

    Method transaction_bet_payout

    Description: Method for money deposits to Partners player account – paying out the winnings.
    Important notes:

    • Transaction payout should return error with code 700, in case there were no payin with same bet_id before. This transaction should not affect the players balance.
    • Transaction payout should return success but do not change players balance, in case there were already payout been made with same bet_id, but different transaction_id.
    • If transaction_bet_payout method has validation that a payout amount must be equal to payin amount * odd value, then this validation for Speedy 7 game payout should not be used. It's because of the game logic - the odd value/coefficient might be different in payin and payout requests.

    Flowchart diagram:

    Transaction bet payout new2.png

     


     

    • Some betting options, can have additional selections, like number, sector, dice and etc. For each selection new <bet_option> </bet_option> element will be added. Up to 7 <bet_option> elements can be included in the request.

    Request example for games without additional selection (balls, dice, wheel sector):

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_payout</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <signature>e456c597cb7f97c168009661b4ee2522</signature>
        <time>1423128560</time>
        <params>
            <player_id>150205</player_id>
            <amount>2034</amount>
            <currency>eur</currency>
            <bet_id>123456</bet_id>
            <transaction_id>246913</transaction_id>
            <retrying>0</retrying>
            <bet_type>won</bet_type>
            <game_id>1</game_id>
            <final_odd>2.50<final_odd>
        </params>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_payouttokenc2696fe0-eba8-012f-596c-528c3f9e4820time1423128560player_id150205amount2034currencyeurbet_id123456transaction_id246913retrying0bet_typewongame_id1final_odd2.501JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      e456c597cb7f97c168009661b4ee2522


    Request example for Speedy 7

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
      <method>transaction_bet_payout</method>
      <token>5j5JK3JpWr3PXpkwPtAC4TMxX1dVICTE1OS0TbgCwXa3IZItQ7w26pUXINuJ</token>
      <time>1611067082</time>
      <signature>c866b0d947688ddf92175a323d4177ba</signature>
      <params>
        <player_id>8</player_id>
        <amount>3260</amount>
        <currency>usd</currency>
        <bet_id>4420111</bet_id>
        <transaction_id>13249950</transaction_id>
        <retrying>0</retrying>
        <bet_type>won</bet_type>
        <game_id>11</game_id>
        <bet_option>
          <name>choice</name>
          <value>black</value>
          <round>3</round>
        </bet_option>
        <bet_option>
          <name>choice</name>
          <value>black</value>
          <round>4</round>
        </bet_option>
        <final_odd>1.80<final_odd>
      </params>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_payouttoken5j5JK3JpWr3PXpkwPtAC4TMxX1dVICTE1OS0TbgCwXa3IZItQ7w26pUXINuJtime1611067082player_id8amount3260currencyusd
      
      bet_id4420111transaction_id13249950retrying0bet_typewongame_id11bet_optionnamechoicevalueblackround3namechoicevalueblackround4final_odd1.801JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      c866b0d947688ddf92175a323d4177ba

    <bet_option></bet_option> element values can be different for each game.

    Lottery games (Lucky 5, Lucky 6, Lucky 7) example:

        <bet_option>
          <name>ball</name>
          <value>25</value>
          <round></round>
        </bet_option>
        <bet_option>
          <name>ball</name>
          <value>26</value>
          <round></round>
        </bet_option>
        <bet_option>
          <name>ball</name>
          <value>27</value>
          <round></round>
        </bet_option>
    

    Dice Duel:

        <bet_option>
          <name>dice</name>
          <value>5</value>
          <round></round>
        </bet_option>
    


    Wheel Of Fortune:

        <bet_option>
          <name>sector</name>
          <value>10</value>
          <round></round>
        </bet_option>
    
    Required Request Child-Elements for <params>
    Field Type Description
    token varchar Betgames system sends last valid player token, but it's not used for user identification in money deposit. Instead of it Betgames system uses player_id field.
    Read more Token System
    player_id varchar Player external code provided by partner in get_account_details method. This method uses player_id for player identification.
    amount int Amount to deposit to account.
    Important: 1) amount is in cents. 2) amount is 0 for lost bet.
    currency varchar Currency code from the ISO 4217 code list.
    bet_id bigint unsigned Unique bet id on BetGames.TV server.
    transaction_id bigint unsigned Unique transaction id on BetGames.TV server. Partner is obliged to store processed transaction ids. If the request contains the same transaction id, Partner should return success status, but do not deposit money to the balance again.
    retrying int Informational parameter. If it is equal 1, it means BetGames.TV server tries to resend request. For example, because of the network connection problems.
    bet_type const Can be 'lost' / 'won' / 'return' / 'tie'/ 'returned' (For Twain Sport).
    game_id int Game ID in Betgames system - List of game ID's.
    bet_option / name string Selection name, can be 'ball' / 'sector' / 'dice' / 'choice'.
    bet_option / value string Selection value
    bet_option / round int / null Only used for game "Speedy 7", to determine a round in which bet was placed.
    final_odd decimal Shows final odd value by which - bet was really calculated.

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_payout</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423128560</time>
        <params>
            <balance_after>2092</balance_after>
            <already_processed>0</already_processed>
        </params>
        <signature>736782bf451def853bbad43e210d3787</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_payouttokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423128560balance_after2092already_processed01JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
       5b1b44f983361d84d9fb99eb93b2643b

     

    Required Response Child-Elements for <params>
    Field Type Description
    balance_after int Player balance after the transaction.
    Important: amount must be in cents.
    already_processed int Equals 1 if the transaction was already processed.

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_payout</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>0</success>
        <error_code>700</error_code>
        <error_text>there is no PAYIN with provided bet_id</error_text>
        <time>1423229288</time>
        <signature>a678ae382bce2edd151a40d6b470e257</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_payouttokenc2696fe0-eba8-012f-596c-528c3f9e4820success0error_code700error_textthere is no PAYIN with provided bet_idtime14232292881JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      a678ae382bce2edd151a40d6b470e257

    Method transaction_bet_combination_payin

    Description: Method for accepting combination payin.

    Transaction_bet_combination_payin gives a possibility to place one bet consisting of two or more different bets/events.
    Note: currently only two combo bets can be placed inside transaction_bet_combination_payin.

    Flowchart diagram:

    Combo payin.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
      <method>transaction_bet_combination_payin</method>
      <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
      <time>1543926540</time>
      <params>
        <amount>1200</amount>
        <odd_value>3</odd_value>
        <currency>eur</currency>
        <combination_id>123</combination_id>
        <combination_time>2018-12-04 12:29:00</combination_time>
        <is_mobile>0</is_mobile>
        <bet>
          <bet_id>1231</bet_id>
          <transaction_id>1233</transaction_id>
          <draw>
            <code>51301010100</code>
            <time>2018-01-01 00:00:00</time>
          </draw>
          <game>
            <id>1</id>
            <name>Lucky 7</name>
            <translation>Lucky 7</translation>
          </game>
          <odd>
            <name>More ODD numbered balls will be dropped</name>
            <value>1.5</value>
            <translation>More ODD numbered balls will be dropped</translation>
          </odd>
        </bet>
        <bet>
          <bet_id>1232</bet_id>
          <transaction_id>1234</transaction_id>
          <draw>
            <code>51301010300</code>
            <time>2018-01-01 00:00:00</time>
          </draw>
          <game>
            <id>3</id>
            <name>Lucky 5</name>
            <translation>Lucky 5</translation>
          </game>
          <odd>
            <name>COUNT of the dropped WHITE balls will be MORE than COUNT of the dropped RED balls</name>
            <value>2</value>
            <translation>COUNT of the dropped WHITE balls will be MORE than COUNT of the dropped RED balls</translation>
          </odd>
        </bet>
      </params>
      <signature>e32ce06ecfbdb76a1813e02881d63cc1</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_combination_payintokenc2696fe0-eba8-012f-596c-528c3f9e4820time1543926540amount1200odd_value3currencyeurcombination_id123combination_time2018-12-04 12:29:00is_mobile0betbet_id1231transaction_id1233drawcode51301010100time2018-01-01 00:00:00gameid1nameLucky 7translationLucky 7oddnameMore ODD numbered balls will be droppedvalue1.5translationMore ODD numbered balls will be droppedbet_id1232transaction_id1234drawcode51301010300time2018-01-01 00:00:00gameid3nameLucky 5translationLucky 5oddnameCOUNT of the dropped WHITE balls will be MORE than COUNT of the dropped RED ballsvalue2translationCOUNT of the dropped WHITE balls will be MORE than COUNT of the dropped RED balls1JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      e32ce06ecfbdb76a1813e02881d63cc1

     

    Required Request Child-Elements for <params>
    Field Type Description
    amount int Total combination amount to withdraw from account.
    Important: amount is in cents.
    odd_value float Multiplied combination odd value.
    currency varchar Currency code from the ISO 4217 currency list.
    combination_id bigint unsigned Unique combination id on BetGames.TV server.
    combination_time string Combination creation time, UTC.
    is_mobile bool-int Parameter to distinguish platform ("1"-mobile). This parameter appears in transaction_bet_payin requests only when you push it into iFrame JavaScript launch code.
    Note: this parameter isn't being used for desktop platform.
    bet / bet_id bigint unsigned Unique bet id on BetGames.TV server.
    bet / transaction_id bigint unsigned Unique transaction id on BetGames.TV server. Partner is obliged to store processed transaction ids. If the request contains the same transaction id, Partner should return success status, but do not withdraw money from the balance again.
    bet / draw / code string Draw code number.
    bet / draw / time string Draw start time, UTC.
    bet / game / id int or varchar Game ID in Betgames system - List of game ID's.
    bet / game / name string Game name in English.
    bet / game / translation string Game name in player's language.
    bet / odd / name string Outcome name in English.
    bet / odd / value float Outcome value
    bet / odd / translation string Outcome name in player's language.

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_combination_payin</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423127617</time>
        <params>
            <balance_after>48766</balance_after>
            <already_processed>0</already_processed>
        </params>
        <signature>33059d3b8405d51d46a673c8acec1064</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_combination_payintokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423127617balance_after48766already_processed01JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      33059d3b8405d51d46a673c8acec1064

     

    Required Response Child-Elements for <params>
    Field Type Description
    balance_after int Player balance after the transaction.
    Important: amount must be in cents.
    already_processed int Equals 1 if the transaction was already processed.

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_combination_payin</method>
        <token>abc-eba8-012f-596c-528c3f9e4820</token>
        <success>0</success>
        <error_code>3</error_code>
        <error_text>invalid token</error_text>
        <time>1423229288</time>
        <signature>fbf1851d854329d7f04842f115351421</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_combination_payintokenabc-eba8-012f-596c-528c3f9e4820success0error_code3error_textinvalid tokentime14232292881JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      fbf1851d854329d7f04842f115351421

    Method transaction_bet_combination_payout

    Description: Method for money deposits to Partners player account – paying out the winnings.
    Important notes:

    • Transaction combination payout should return error with code 700, in case there were no combination payin with same combination_id and bet_id's before. This transaction should not affect the players balance.
    • Transaction payout should return success but do not change players balance, in case there were already payout been made with same bet_id, but different transaction_id.

    Flowchart diagram:

    Combo payout.png

     


     

    • Some betting options, can have additional selection like number, sector, dice and etc. For each selection new <bet_option> </bet_option> element will be added. Up to 7 <bet_option> elements can be included in the request.

    Request example without selected additional betting options (balls, dice, wheel sector):

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
      <method>transaction_bet_combination_payout</method>
      <token>abc-eba8-012f-596c-528c3f9e4820</token>
      <time>1543926924</time>
      <params>
        <player_id>c2696fe0-eba8-012f-596c-528c3f9e4820</player_id>
        <amount>1234</amount>
        <type>won</type>
        <currency>eur</currency>
        <combination_id>123</combination_id>
        <bet>
          <bet_id>1231</bet_id>
          <game_id>1</game_id>
          <transaction_id>1235</transaction_id>
          <type>won</type>
          <final_odd>1.5</final_odd>
        </bet>
        <bet>
          <bet_id>1232</bet_id>
          <game_id>3</game_id>
          <transaction_id>1236</transaction_id>
          <type>won</type>
          <final_odd>1.5</final_odd>
        </bet>
        <final_odd>2.25</final_odd>
      </params>
      <signature>fe75334d2b064e616ed58d7b0413d915</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_combination_payouttokenabc-eba8-012f-596c-528c3f9e4820time1543926924player_idc2696fe0-eba8-012f-596c-528c3f9e4820amount1234
      typewoncurrencyeurcombination_id123betbet_id1231game_id1transaction_id1235typewonfinal_odd1.5bet_id1232game_id3transaction_id1236typewonfinal_odd1.5final_odd2.251JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      fe75334d2b064e616ed58d7b0413d915

     

    Request example with selected additional betting options (same as for transaction_bet_payout, different <name> for each game can be included like choice, ball and etc):

    <?xml version="1.0" encoding="UTF-8"?> 
    <root> 
       <method>transaction_bet_combination_payout</method>
       <token>5j5JK3JpWr3PXpkwPtAC4TMxX1dVICTE1OS0TbgCwXa3IZItQ7w26pUXINuJ<
       /token> 
       <time>1611071329</time> 
       <signature>8571541fac780af5ce43d6f5ecbf4931</signature> 
       <params> 
       <player_id>8</player_id> 
       <amount>0</amount> 
       <type>lost</type> 
       <currency>usd</currency> 
       <combination_id>2981</combination_id> 
       <bet> 
          <bet_id>4420295</bet_id> 
          <game_id>1</game_id> 
          <transaction_id>13250512</transaction_id> 
          <type>lost</type>
          <final_odd>1.5</final_odd> 
          <bet_option> 
             <name>ball</name> 
             <value>16</value> 
             <round></round> 
          </bet_option> 
          <bet_option> 
             <name>ball</name> 
             <value>17</value> 
             <round></round> 
          </bet_option> 
       </bet> 
       <bet> 
          <bet_id>4420296</bet_id> 
          <game_id>7</game_id> 
          <transaction_id>13250513</transaction_id> 
          <type>lost</type> 
          <final_odd>1.5</final_odd>
          <bet_option> 
             <name>sector</name> 
             <value>16</value> 
             <round></round> 
          </bet_option> 
       </bet> 
       <final_odd>2.25</final_odd>
       </params> 
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_combination_payouttoken5j5JK3JpWr3PXpkwPtAC4TMxX1dVICTE1OS0TbgCwXa3IZItQ7w26pUXINuJtime1611071329player_id8amount0type
      lostcurrencyusdcombination_id2981betbet_id4420295game_id1transaction_id13250512typelostfinal_odd1.5bet_optionnameballvalue16roundnameballvalue17roundbet_id4420296game_id
      7transaction_id13250513typelostfinal_odd1.5bet_optionnamesectorvalue16roundfinal_odd2.251JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      8571541fac780af5ce43d6f5ecbf4931


    Required Request Child-Elements for <params>
    Field Type Description
    player_id varchar Player external code provided by partner in get_account_details method. This method uses player_id for player identification.
    amount int Amount to deposit to account.
    Important: 1) amount is in cents. 2) amount is 0 for lost bet.
    currency varchar Currency code from the ISO 4217 code list.
    combination_id bigint unsigned Unique combination id on BetGames.TV server.
    type string Type of combination result - could be won, lost, return.
    bet / bet_id bigint unsigned Unique bet id on BetGames.TV server.
    bet / game_id int or varchar Game ID in Betgames system - List of game ID's.
    bet / transaction_id bigint unsigned Unique transaction id on BetGames.TV server. Partner is obliged to store processed transaction ids. If the request contains the same transaction id, Partner should return success status, but do not deposit money to the balance again.
    bet / type string Type of combination result for each single bet separately 'lost' / 'won' / 'return' / 'tie'/ 'returned' (For Twain Sport).
    bet_option / name string Selection name, can be 'ball' / 'sector' / 'dice' / 'choice'.
    bet_option / value string Selection value
    bet_option / round int / null Only used for game "Speedy 7", to determine a round in which bet was placed.
    final_odd decimal Shows final odd value by which - bet was really calculated

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_combination_payout</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423128560</time>
        <params>
            <balance_after>2092</balance_after>
            <already_processed>0</already_processed>
        </params>
        <signature>7c67a40ae0a3b7884ed45baf75a3cc1d</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_combination_payouttokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423128560balance_after2092already_processed01JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      7c67a40ae0a3b7884ed45baf75a3cc1d

     

    Required Response Child-Elements for <params>
    Field Type Description
    balance_after int Player balance after the transaction.
    Important: amount must be in cents.
    already_processed int Equals 1 if the transaction was already processed.

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_combination_payout</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>0</success>
        <error_code>700</error_code>
        <error_text>there is no PAYIN with provided bet_id</error_text>
        <time>1423229288</time>
        <signature>cea725e94b7683684efb1b7287226850</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_combination_payouttokenc2696fe0-eba8-012f-596c-528c3f9e4820success0error_code700error_textthere is no PAYIN with provided bet_idtime14232292881JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      cea725e94b7683684efb1b7287226850

    Method transaction_promo_payout

    Description: Method for money deposits to Partners player account – paying out the promotion winnings.

    Important notes:

    • Transaction promo payout should return error with code 700, in case there were no payin with bet_id provided in request. This transaction should not affect the players balance;
    • Token shouldn't be used as player identificator for payout, player_id should be used;
    • Transaction promo payout should return success but do not change players balance, in case there were already payout been made with same promo_transaction_id;
    • Second transaction promo payout for same bet_id should be accepted if promo_transaction_id and promo_type is different.
    • promo_transaction_id ids pool is different from transaction_ids used in transaction_bet_payout (transaction_bet_payin) methods, there may be transaction_bet_payout with transaction_id = 1 and transaction_promo_payout with promo_transaction_id = 1.
    • transaction_promo_payout will be sent as additional payout with bet_id, which was already paid out with transaction_bet_payout or transaction_bet_combination_payout.


    Promo payout flowchart.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
      <method>transaction_promo_payout</method>
      <token>5j5JK3JpWr3PXpkwPtAC4TMxX1dVICTE1OS0TbgCwXa3IZItQ7w26pUXINuJ</token>
      <time>1611072828</time>
      <signature>3050679cd4bb83dbd2c8adf8cfccd0c0</signature>
      <params>
        <player_id>8</player_id>
        <currency>usd</currency>
        <amount>100</amount>               
        <promo_transaction_id>77472884103</promo_transaction_id>
        <bet_id>92644491027</bet_id>
        <game_id>1</game_id>
        <promo_type>cashback</promo_type>
      </params>
    </root>
    
    • Signature calculation string:
      methodtransaction_promo_payouttoken5j5JK3JpWr3PXpkwPtAC4TMxX1dVICTE1OS0TbgCwXa3IZItQ7w26pUXINuJtime1611072828
      player_id8currencyusdamount100promo_transaction_id77472884103bet_id92644491027game_id1promo_typecashback1JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
       c0e15947664b2665d0b8a9edab720340

     

    Required Request Child-Elements for <params>
    Field Type Description
    player_id varchar Player external code provided by partner in get_account_details method. This method uses player_id for player identification.
    currency varchar Currency code from the ISO 4217 code list.
    amount int Amount to deposit to account.
    Important: 1) amount is in cents. 2) amount is 0 for lost bet.
    promo_transaction_id bigint unsigned Unique promotion transaction id on BetGames.TV server. Partner is obliged to store processed promotion transaction ids. If the request contains the same transaction id, Partner should return success status, but do not deposit money to the balance again.

    Important: promo_transaction_id and transaction_id used in transaction_bet_payin/transaction_bet_payout is different and should be stored separately.

    bet_id bigint unsigned Unique bet id on BetGames.TV server.
    game_id int Game ID in Betgames system - List of game ID's.
    promo_type string Can be 'heads_up' / 'cashback' / 'Speedy7'.

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_promo_payout</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1423128560</time>
        <params>
            <balance_after>2092</balance_after>
            <already_processed>0</already_processed>
        </params>
        <signature>736782bf451def853bbad43e210d3787</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_promo_payouttokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1423128560balance_after2092already_processed01JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      3db88cd33b0a5a7d1326c9a459f17ba7

     

    Required Response Child-Elements for <params>
    Field Type Description
    balance_after int Player balance after the transaction.
    Important: amount must be in cents.
    already_processed int Equals 1 if the transaction was already processed.

     


     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_promo_payout</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>0</success>
        <error_code>700</error_code>
        <error_text>there is no PAYIN with provided bet_id</error_text>
        <time>1423229288</time>
        <signature>a678ae382bce2edd151a40d6b470e257</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_promo_payouttokenc2696fe0-eba8-012f-596c-528c3f9e4820success0error_code700error_textthere is no PAYIN with provided bet_idtime14232292881JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      52cb12b664baae2adb14268ac71624fa

    Method transaction_bet_multi_payin

    Description: Method allows to place multiple single bets with one request. Accept any of sent bets, partial success is possible.

    Flowchart diagram:

    Multi payin.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_multi_payin</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <time>1577836800</time>
        <signature>2d7a67bd343de00b8815ecc88d2eebb8</signature>
        <params>
            <currency>eur</currency>
            <is_mobile>1</is_mobile>
            <bet>
                <bet_id>1</bet_id>
                <amount>100</amount>
                <transaction_id>1</transaction_id>
                <draw>
                    <code>123</code>
                    <time>2020-01-01 00:00:00</time>
                </draw>
                <game>
                    <id>10</id>
                    <name>Dice Duel</name>
                    <translation>Dice Duel</translation>
                </game>
                <odd>
                    <id>231</id>
                    <name>Red dice wins</name>
                    <value>2.25</value>
                    <translation>Red dice wins</translation>
                </odd>
            </bet>
            <bet>
                <bet_id>2</bet_id>
                <amount>100</amount>
                <transaction_id>2</transaction_id>
                <draw>
                    <code>123</code>
                    <time>2020-01-01 00:00:00</time>
                </draw>
                <game>
                    <id>10</id>
                    <name>Dice Duel</name>
                    <translation>Dice Duel</translation>
                </game>
                <odd>
                    <id>231</id>
                    <name>Red dice wins</name>
                    <value>2.25</value>
                    <translation>Red dice wins</translation>
                </odd>
            </bet>
            <bet>
                <bet_id>3</bet_id>
                <amount>100</amount>
                <transaction_id>3</transaction_id>
                <draw>
                    <code>123</code>
                    <time>2020-01-01 00:00:00</time>
                </draw>
                <game>
                    <id>10</id>
                    <name>Dice Duel</name>
                    <translation>Dice Duel</translation>
                </game>
                <odd>
                    <id>231</id>
                    <name>Red dice wins</name>
                    <value>2.25</value>
                    <translation>Red dice wins</translation>
                </odd>
            </bet>
        </params>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_multi_payintokenc2696fe0-eba8-012f-596c-528c3f9e4820time1577836800currencyeuris_mobile1betbet_id1amount100transaction_id1drawcode123time2020-01-01 00:00:00gameid10nameDice DueltranslationDice Dueloddid231nameRed dice winsvalue2.25translationRed dice winsbet_id2amount100transaction_id2drawcode123time2020-01-01 00:00:00gameid10nameDice DueltranslationDice Dueloddid231nameRed dice winsvalue2.25translationRed dice winsbet_id3amount100transaction_id3drawcode123time2020-01-01 00:00:00gameid10nameDice DueltranslationDice Dueloddid231nameRed dice winsvalue2.25translationRed dice wins1JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      2d7a67bd343de00b8815ecc88d2eebb8

     


     

    Required Request Child-Elements for <params>
    Field Type Description
    currency string Currency code from the ISO 4217 currency list.
    is_mobile bool-int Parameter to distinguish platform ("1"-mobile). This parameter appears in transaction_bet_payin requests only when you push it into iFrame JavaScript launch code.
    Note: this parameter isn't being used for desktop platform.
    bet / amount int Amount of the exact bet to withdraw from account.
    Important: amount is in cents.
    bet / bet_id bigint Unique bet id on BetGames.TV server.
    bet / transaction_id bigint Unique transaction id on BetGames.TV server. Partner is obliged to store processed transaction ids. If the request contains the same transaction id, Partner should return success status, but do not withdraw money from the balance again.
    bet / draw / code string Draw code number.
    bet / draw / time string Draw start time, UTC.
    game / id int or varchar Game ID in Betgames system - List of game ID's.
    game / name string Game name in English.
    game / translation string Game name in player's language.
    odd / id int Odd ID in Betgames system - List of odd ID's.
    odd / name string Outcome name in English.
    odd / value float Outcome value.
    odd / translation string Outcome name in player's language.

     


     

    1.0. Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_multi_payin</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1577836800</time>
        <params>
            <balance_after>999700</balance_after>
            <bet>
                <transaction_id>246912</transaction_id>
                <success>1</success>
                <error_code>0</error_code>
                <error_text></error_text>
            </bet>
            <bet>
                <transaction_id>246913</transaction_id>
                <success>1</success>
                <error_code>0</error_code>
                <error_text></error_text>
            </bet>
            <bet>
                <transaction_id>246914</transaction_id>
                <success>1</success>
                <error_code>0</error_code>
                <error_text></error_text>
            </bet>
        </params>
        <signature>92339383ecdbbd181880500686dbd932</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_multi_payintokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1577836800balance_after999700bettransaction_id246912success1error_code0error_texttransaction_id246913
      success1error_code0error_texttransaction_id246914success1error_code0error_text1JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      92339383ecdbbd181880500686dbd932

     

    2.0. Partial success is possible. Example response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_multi_payin</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1577836800</time>
        <params>
            <balance_after>999700</balance_after>
            <bet>
                <transaction_id>246912</transaction_id>
                <success>1</success>
                <error_code>0</error_code>
                <error_text></error_text>
            </bet>
            <bet>
                <transaction_id>246913</transaction_id>
                <success>1</success>
                <error_code>0</error_code>
                <error_text></error_text>
            </bet>
            <bet>
                <transaction_id>246914</transaction_id>
                <success>0</success>
                <error_code>703</error_code>
                <error_text>insufficient balance</error_text>
            </bet>
        </params>
        <signature>34b65e7c2f22719689dd4f727974e62e</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_multi_payintokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1577836800balance_after999700bettransaction_id246912success1error_code0error_texttransaction_id246913
      success1error_code0error_texttransaction_id246914success0error_code703error_textinsufficient balance1JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      34b65e7c2f22719689dd4f727974e62e

     


     

    3.0. Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
        <method>transaction_bet_multi_payin</method>
        <token>c2696fe0-eba8-012f-596c-528c3f9e4820</token>
        <success>1</success>
        <error_code>0</error_code>
        <error_text></error_text>
        <time>1577836800</time>
        <params>
            <balance_after>999700</balance_after>
            <bet>
                <transaction_id>246912</transaction_id>
                <success>0</success>
                <error_code>703</error_code>
                <error_text>insufficient balance</error_text>
            </bet>
            <bet>
                <transaction_id>246913</transaction_id>
                <success>0</success>
                <error_code>703</error_code>
                <error_text>insufficient balance</error_text>
            </bet>
            <bet>
                <transaction_id>246914</transaction_id>
                <success>0</success>
                <error_code>703</error_code>
                <error_text>insufficient balance</error_text>
            </bet>
        </params>
        <signature>1ca007a86ffb3239f316d6b0d99350cb</signature>
    </root>
    
    • Signature calculation string:
      methodtransaction_bet_multi_payintokenc2696fe0-eba8-012f-596c-528c3f9e4820success1error_code0error_texttime1577836800balance_after999700bettransaction_id246912success0error_code703
      error_textinsufficientbalancetransaction_id246913success0error_code703error_textinsufficient balancetransaction_id246914success0error_code703error_textinsufficient balance1JD4U-S7XB6-GKITA-DQXHP
    • Result after MD5 calculation:
      1ca007a86ffb3239f316d6b0d99350cb
    Required Response Child-Elements for <params>
    Field Type Description
    balance_after int Player balance after the transaction.
    Important: amount must be in cents.
    bet / transaction_id bigint Unique transaction id on BetGames.TV server. Partner is obliged to store processed transaction ids. If the request contains the same transaction id, Partner should return success status, but do not withdraw money from the balance again.
    bet / error_code int Partner internal error code. In case of success returns 0; Note: code 404 is prohibited (being used by BetGames.TV in case of network connection problems).
    bet / error_text varchar text description of the error

     


    Method transaction_bet_batch_payin

    Description: Method allows to place multiple single bets with one request. Accept all or none.

    Flowchart diagram:

    Batch payin.png

     


     

    Request example:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
      <method>transaction_bet_batch_payin</method>
      <token>yt3XMvbut2</token>
      <time>1715688506</time>
      <signature>8ba594bea4b04c4e5baff5e6480ccb16</signature>
      <params>
        <currency>eur</currency>
        <is_mobile>0</is_mobile>
        <bet>
          <bet_id>9252642</bet_id>
          <amount>50000</amount>
          <transaction_id>29307071</transaction_id>
          <draw>
            <code>232405140723</code>
            <time>2024-05-14 12:08:26</time>
          </draw>
          <game>
            <id>1</id>
            <name>Lucky 7</name>
            <translation>7 iš 42</translation>
          </game>
          <odd>
            <id>213</id>
            <name>Selected ball will be dropped with No. 1,...,42 (1, 2, 3)</name>
            <value>1.23</value>
            <translation>Iškris pasirinktas kamuoliukas Nr.1,...,42 (1, 2, 3)</translation>
          </odd>
        </bet>
        <bet>
          <bet_id>9252643</bet_id>
          <amount>50000</amount>
          <transaction_id>29307072</transaction_id>
          <draw>
            <code>232405140724</code>
            <time>2024-05-14 12:08:26</time>
          </draw>
          <game>
            <id>1</id>
            <name>Lucky 7</name>
            <translation>7 iš 42</translation>
          </game>
          <odd>
            <id>213</id>
            <name>Selected ball will be dropped with No. 1,...,42 (1, 2, 3)</name>
            <value>1.23</value>
            <translation>Iškris pasirinktas kamuoliukas Nr.1,...,42 (1, 2, 3)</translation>
          </odd>
        </bet>
        <bet>
          <bet_id>9252644</bet_id>
          <amount>50000</amount>
          <transaction_id>29307073</transaction_id>
          <draw>
            <code>232405140725</code>
            <time>2024-05-14 12:08:26</time>
          </draw>
          <game>
            <id>1</id>
            <name>Lucky 7</name>
            <translation>7 iš 42</translation>
          </game>
          <odd>
            <id>213</id>
            <name>Selected ball will be dropped with No. 1,...,42 (1, 2, 3)</name>
            <value>1.23</value>
            <translation>Iškris pasirinktas kamuoliukas Nr.1,...,42 (1, 2, 3)</translation>
          </odd>
        </bet>
      </params>
    </root>
    


    • Signature calculation string:
      methodtransaction_bet_batch_payintokenyt3XMvbut2time1715688506currencyeuris_mobile0betbet_id9252642amount50000transaction_id29307071drawcode232405140723time2024-05-14 12:08:26gameid1nameLucky 7translation7 iš 42oddid213nameSelected ball will be dropped with No. 1,...,42 (1, 2, 3)value1.23translationIškris pasirinktas kamuoliukas Nr.1,...,42 (1, 2, 3)bet_id9252643amount50000transaction_id29307072drawcode232405140724time2024-05-14 12:08:26gameid1nameLucky 7translation7 iš 42oddid213nameSelected ball will be dropped with No. 1,...,42 (1, 2, 3)value1.23translationIškris pasirinktas kamuoliukas Nr.1,...,42 (1, 2, 3)bet_id9252644amount50000transaction_id29307073drawcode232405140725time2024-05-14 12:08:26gameid1nameLucky 7translation7 iš 42oddid213nameSelected ball will be dropped with No. 1,...,42 (1, 2, 3)value1.23translationIškris pasirinktas kamuoliukas Nr.1,...,42 (1, 2, 3)X87L3-MO32U-URCHO-7JBIO
    • Result after MD5 calculation:
      8ba594bea4b04c4e5baff5e6480ccb16

     


     

    Required Request Child-Elements for <params>
    Field Type Description
    currency string Currency code from the ISO 4217 currency list.
    is_mobile bool-int Parameter to distinguish platform ("1"-mobile). This parameter appears in transaction_bet_payin requests only when you push it into

    iFrame JavaScript launch code.
    Note: this parameter isn't being used for desktop platform.

    bet / amount int Amount of the exact bet to withdraw from account.
    Important: amount is in cents.
    bet / bet_id bigint Unique bet id on BetGames.TV server.
    bet / transaction_id bigint Unique transaction id on BetGames.TV server. Partner is obliged to store processed transaction ids. If the request contains the same transaction id, Partner should return success status, but do not withdraw money from the balance again.
    bet / draw / code string Draw code number.
    bet / draw / time datetime Draw start time, UTC.
    bet / game / id int or varchar Game ID in Betgames system - List of game ID's.
    bet / game / name string Game name in English.
    bet / game / translation string Game name in player's language.
    bet / odd / id int Odd ID in Betgames system - List of odd ID's.
    bet / odd / name string Outcome name in English.
    bet / odd / value float Outcome value.
    bet / odd / translation string Outcome name in player's language.

     


     

    Example of successful response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
      <method>transaction_bet_batch_payin</method>
      <token>yt3XMvbut2</token>
      <success>1</success>
      <error_code>0</error_code>
      <error_text></error_text>
      <params>
        <balance_after>725000</balance_after>
        <already_processed>0</already_processed>
      </params>
      <time>1715688066</time>
      <signature>b3a2795b9c3f25e14acff680735a7b0b</signature>
    </root>
    

     

    Example of error response:

    <?xml version="1.0" encoding="UTF-8"?>
    <root>
      <method>transaction_bet_batch_payin</method>
      <token>yt3XMvbut2</token>
      <success>0</success>
      <error_code>703</error_code>
      <error_text>insufficient balance</error_text>
      <time>1715688066</time>
      <signature>9675688a7b46d063aeb046a4ed69b38b</signature>
    </root>
    
    Required Response Child-Elements for <params>
    Field Type Description
    balance_after int Player balance after the transaction.
    Important: amount must be in cents.
    bet / transaction_id bigint Unique transaction id on BetGames.TV server. Partner is obliged to store processed transaction ids.

    If the request contains the same transaction id, Partner should return success status, but do not withdraw money from the balance again.

    bet / error_code int Partner internal error code. In case of success returns 0;

    Note: code 404 is prohibited (being used by BetGames.TV in case of network connection problems).

    bet / error_text varchar text description of the error

     


    Test token page

    The next step after you implemented all API methods is testing procedure from Betgames.TV side.

    To start testing procedure we need a simple page which outputs a newly generated token for some test player. You have to generate a token on each page load for logged in player and place it in that page. We need it for easier testing, so we could get new valid tokens by ourselves.

    Note: please make sure a test player has some money in account.

    Frequently asked questions

    1. Does each API method should be accessible by separate url?

    No, you have provide us single API url.

    Good example: https://partner-domain.com/betgames_api

    Bad example: https://partner-domain.com/betgames_api/ping, https://partner-domain.com/betgames_api/get_account_details, etc.;

    2. Can we use our internal error codes/error texts?

    Yes, you can use your internal error codes system. Only error code 404 is prohibited (being used by BetGames.TV in case of network connection problems) and error code's 700-799 are reserved for a specific cases. When Betgames server receives one of these error codes, specific error message will be shown inside of iFrame. Currently, following specific cases are registered:

    • 701 - We apologize, but bets for this game provider are restricted for you, please contact support for more details.
    • 702 - Your account requires identity validation.
    • 703 - Insufficient balance.
    • 704 - The game in the section is not available due to the active bonus. Details will be in your account.
    • 705 - Bet stake can not contain cents in your currency.

    3. How does Betgames.TV side behaves when our (Partner) server is unavailable?

    Request is timed out when Betgames.TV server doesn't get response from Partner's server in 15 seconds.

    Example:

    - a player places a bet and Partner's server becomes unavailable (doesn't respond in 15 seconds)

    - the player gets an error message 'Bet was not accepted'

    - this bet is being marked as failed on Betgames.TV side

    - Betgames.TV server waits 2 minutes (expecting Partner's server to become available) and sends transaction_bet_payout request for failed bet, so the player could receive bet amount back into his account

    - Betgames.TV server repeats current procedure every minute while Partner's server becomes available