POST Event/GetWebApiEventBetTypeMapDetailByEBTDMID

Gets the event betype detail Map ID used for validation

Request Information

URI Parameters

None.

Body Parameters

ApiEventBetTypeDetailMapRequestFilter
NameDescriptionTypeAdditional information
eventBetTypeDetailMapID

Gets or sets the event bet type detail map identifier for validation.

integer

None.

userID

Gets or sets the user identifier.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "eventBetTypeDetailMapID": 1,
  "userID": 2
}

application/xml, text/xml

Sample:
<ApiEventBetTypeDetailMapRequestFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
  <userID>2</userID>
  <eventBetTypeDetailMapID>1</eventBetTypeDetailMapID>
</ApiEventBetTypeDetailMapRequestFilter>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ApiEventBetTypeDetailMapRequestFilter'.

Response Information

Resource Description

ApiEventBetTypeDetailMapResponse
NameDescriptionTypeAdditional information
ResponseObject

Gets or sets the response object.

ApiEventBetTypeDetailMapValidation

None.

ResponseType

Gets or sets the type of the response.

integer

None.

ResponseMessage

Gets or sets the response message.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseObject": {
    "a": 1,
    "b": 2,
    "c": "sample string 3",
    "d": "sample string 4",
    "e": 5,
    "f": 6.0,
    "g": 1.0,
    "h": true,
    "i": true,
    "j": 1,
    "k": true,
    "l": 9,
    "m": 10,
    "n": 1.0,
    "o": 1.0,
    "p": "sample string 11",
    "q": "sample string 12",
    "r": "sample string 13",
    "s": 1.0,
    "t": 14,
    "u": 1,
    "v": "sample string 15"
  },
  "ResponseType": 1,
  "ResponseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiEventBetTypeDetailMapResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
  <ResponseMessage>sample string 2</ResponseMessage>
  <ResponseType>1</ResponseType>
  <ResponseObject>
    <a>1</a>
    <b>2</b>
    <c>sample string 3</c>
    <d>sample string 4</d>
    <e>5</e>
    <f>6</f>
    <g>1</g>
    <h>true</h>
    <i>true</i>
    <j>1</j>
    <k>true</k>
    <l>9</l>
    <m>10</m>
    <n>1</n>
    <o>1</o>
    <p>sample string 11</p>
    <q>sample string 12</q>
    <r>sample string 13</r>
    <s>1</s>
    <t>14</t>
    <u>1</u>
    <v>sample string 15</v>
  </ResponseObject>
</ApiEventBetTypeDetailMapResponse>