POST GameSettings/CreatePayTable
Request Information
URI Parameters
None.
Body Parameters
CreatePayTableRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PayLines | Collection of ActivePayLine |
None. |
|
| PayTableName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PayLines": [
{
"PayLineId": 1,
"PrizeTypeID": 2,
"PrizeAmount": 3.0,
"FormattedPrizeValue": "sample string 4"
},
{
"PayLineId": 1,
"PrizeTypeID": 2,
"PrizeAmount": 3.0,
"FormattedPrizeValue": "sample string 4"
}
],
"PayTableName": "sample string 1"
}
application/xml, text/xml
Sample:
<CreatePayTableRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SciGames.OAAS.Common.DTO">
<PayLines>
<ActivePayLine>
<FormattedPrizeValue>sample string 4</FormattedPrizeValue>
<PayLineId>1</PayLineId>
<PrizeAmount>3</PrizeAmount>
<PrizeTypeID>2</PrizeTypeID>
</ActivePayLine>
<ActivePayLine>
<FormattedPrizeValue>sample string 4</FormattedPrizeValue>
<PayLineId>1</PayLineId>
<PrizeAmount>3</PrizeAmount>
<PrizeTypeID>2</PrizeTypeID>
</ActivePayLine>
</PayLines>
<PayTableName>sample string 1</PayTableName>
</CreatePayTableRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |