GET api/cms/{platform}/seo-fragments

Request Information

URI Parameters

NameDescriptionTypeAdditional information
platform

string

Required

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfSystem.Collections.Generic.ListOfBO.BETResponseObjects.General.CmsSEOFragment
NameDescriptionTypeAdditional information
ResponseObject

Collection of BO.BETResponseObjects.General.CmsSEOFragment

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": [
    {
      "id": 1,
      "platformId": 2,
      "sportId": 3,
      "title": "sample string 4",
      "content": "sample string 5",
      "pageTitle": "sample string 6",
      "metaTag": "sample string 7"
    },
    {
      "id": 1,
      "platformId": 2,
      "sportId": 3,
      "title": "sample string 4",
      "content": "sample string 5",
      "pageTitle": "sample string 6",
      "metaTag": "sample string 7"
    }
  ],
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfListOfCmsSEOFragment xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <CmsSEOFragment>
      <Id>1</Id>
      <PlatformId>2</PlatformId>
      <SportId>3</SportId>
      <Title>sample string 4</Title>
      <Content>sample string 5</Content>
      <pageTitle>sample string 6</pageTitle>
      <metaTag>sample string 7</metaTag>
    </CmsSEOFragment>
    <CmsSEOFragment>
      <Id>1</Id>
      <PlatformId>2</PlatformId>
      <SportId>3</SportId>
      <Title>sample string 4</Title>
      <Content>sample string 5</Content>
      <pageTitle>sample string 6</pageTitle>
      <metaTag>sample string 7</metaTag>
    </CmsSEOFragment>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfListOfCmsSEOFragment>