GET api/syxbetgames/draw/selections?gameId={gameId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| gameId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfSystem.Collections.Generic.ListOfBO.Models.SyxBetGames.DrawSelection| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | Collection of BO.Models.SyxBetGames.DrawSelection |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": [
{
"selectionId": 1,
"number": 2,
"color": "sample string 3"
},
{
"selectionId": 1,
"number": 2,
"color": "sample string 3"
}
],
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfListOfDrawSelection xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<DrawSelection>
<SelectionId>1</SelectionId>
<Number>2</Number>
<Color>sample string 3</Color>
</DrawSelection>
<DrawSelection>
<SelectionId>1</SelectionId>
<Number>2</Number>
<Color>sample string 3</Color>
</DrawSelection>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfListOfDrawSelection>