GET api/casino/vela/urls

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

BO.EdgeGaming.Model.VelaUrlsResponse
NameDescriptionTypeAdditional information
data

BO.EdgeGaming.Model.VelaUrlsResponse+Data

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {
    "status_code": 1,
    "list": [
      {
        "title": {
          "en": "sample string 1",
          "cn": "sample string 2"
        },
        "game_code": "sample string 1",
        "url": "sample string 2"
      },
      {
        "title": {
          "en": "sample string 1",
          "cn": "sample string 2"
        },
        "game_code": "sample string 1",
        "url": "sample string 2"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<VelaUrlsResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <data>
    <status_code>1</status_code>
    <list>
      <List>
        <title>
          <en>sample string 1</en>
          <cn>sample string 2</cn>
        </title>
        <game_code>sample string 1</game_code>
        <url>sample string 2</url>
      </List>
      <List>
        <title>
          <en>sample string 1</en>
          <cn>sample string 2</cn>
        </title>
        <game_code>sample string 1</game_code>
        <url>sample string 2</url>
      </List>
    </list>
  </data>
</VelaUrlsResponse>