Game table

Get virtual table

API สำหรับดึงโต๊ะเกมส์ที่ดีลเลอร์ตั้งค่าเลือกให้แสดงในคาสิโน

GET {api-domain}/game-service/v-games/get-tables

Request body เป็น json การ generate signature สามารถดูได้ที่ Signature generation

Headers

Name
Type
Description

x-casino-id*

String

casino id

x-casino-signature*

String

เป็น string ที่ได้จากการ hash request body ด้วย authentication key ที่ได้รับจาก Betworld

Request Body

Name
Type
Description

id

String

ไอดีโต๊ะเกมส์ (virtual table id)

status

String

สถานะของโต๊ะ active = เปิด inactive = ปิด

type

String

ประเภทเกมส์ที่ลงเดิมพัน Game type

page

Integer

หน้าที่ต้องการแสดงข้อมูล default = 1

per_page

Integer

จำนวนรายการที่ต้องการแสดงต่อหน้า default = 10 maximum = 100

{
    "message": "success",
    "data": [
        {
            "id": "92b7f08e-9b45-4fc3-8677-bb39b3546a1e",
            "name": "Baccarat BW213",
            "type": "baccarat",
            "image_url": "https://fullmoonprod-public.s3.ap-southeast-1.amazonaws.com/dealer_profile/26bd4515-9a7e-41c3-8268-5e23d7b24bdf/Dealer(108of468).jpg",
            "min_bet": 10,
            "max_bet": 100000,
            "gain_loss_limit": 2000000,
            "status": "active",
            "table_name": "BW213",
            "table_style": "studio",
            "table_status": "active"
        },
        {
            "id": "201c932a-acf9-4693-8a77-f9db3caa93a5",
            "name": "Baccarat BW203",
            "type": "baccarat",
            "image_url": "https://fullmoonprod-public.s3.ap-southeast-1.amazonaws.com/dealer_profile/2643bb68-95bf-4111-bd0c-4c49b260a094/DSC02320.JPG",
            "min_bet": 10,
            "max_bet": 100000,
            "gain_loss_limit": 2000000,
            "status": "active",
            "table_name": "BW203",
            "table_style": "studio",
            "table_status": "active"
        }
    ],
    "meta": {
        "page": 1,
        "page_count": 5,
        "per_page": 2,
        "total_count": 10
    }
}

Last updated