This operation retrieves the game bet information such as, coin sizes, coin counts, wine line count, minimum bet and maximum bet.
Request
PARAMETER | DESCRIPTION | FORMAT | EXAMPLE |
partnerID | ID of partner Unique ID associated with each customer | GUID | D61A14AE-0A0C-464B-B7AB-5900BE7462F9 |
sign | Parameters: partnerID, gameModuleKey, currency (for more information, see Creating Data Sign) | string (64) | 5E0A0349AE36AD67 CD21D891AB124CCE 8CC4171C5BD7EF5B 26FCA86DB71F500A |
gameModuleKey | Module key | string | VS243Reverse_TNP |
currency | Currency in which the game can be played. |
string (4) | EUR |
Request example:
REST JSON
POST https://staging.tomhorngames.com/services/gms/RestCustomerIntegrationService.svc/GetModuleSettings HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: application/json
Content-Length: 123456
Host: staging.tomhorngames.com
{
"partnerID" : "9a2e7402-5cef-42ed-84a6-db589ce19fc6",
"sign" : "E8C1A3EB1BDD263B9FB5213AFFF8AEF909F0D9934BFFEDAD481091CDE36EB365",
"gameModuleKey" : "VS243Reverse_TNP",
"currency" : "EUR"
}
Response
PARAMETER | DESCRIPTION | FORMAT | EXAMPLE |
Code | Result codes: 0, 1, 11, 12, 1001, 1002, 1003, 1006, 1007, 1010, 1017, 1033 (for more information, see Result Codes) | integer | 0 |
Key | Key of the game module | string | VS243Reverse_TNP |
Type | The type of game: | string | Video Slot |
GameType | Totalbet - FGB bet amount = CoinSize from CreateCampaign
Linebet - FGB bet amount = WinLineCount * CoinSize from CreateCampaign LevelBet - do not support FGB |
string | TotalBet |
Currency | Currency in which the game can be played. This value is in ISO 4217 format, so it is expressed with 3 letters. | string | EUR |
CoinSizes | The coin sizes in game | decimal | 0.5;1;2;5;10;20;25;50;100 |
CoinCounts | Coin Counts | integer | 1 |
WinLineCount | The win lines count in game | integer | 9 |
MinBet | The minimum bet that is possible in game | decimal | 0.5 |
MaxBet | The maximum bet that is possible in game | decimal | 100 |
Response example:
REST JSON
{
"Code": 0,
"GameModules": [{
"GameType": "Totalbet",
"Key": "VSFireF_TNP",
"Settings": [{
"CoinCounts": "1",
"CoinSizes": "0.1;0.2;0.5;1;2;5;10;20;25;50;100",
"Currency": "USD",
"MaxBet": "100",
"MinBet": "0.1",
"WinLineCount": "20"
}],
"Type": "Video Slot"
}],
"Message": null
}
Comments
0 comments
Article is closed for comments.