GET api/content/{pageName}/{stateID}?PracticeArea={PracticeArea}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pageName

string

Required

stateID

integer

Default value is 0

PracticeArea

string

None.

Body Parameters

None.

Response Information

Resource Description

ContentPageModel
NameDescriptionTypeAdditional information
ID

integer

None.

PageName

string

None.

SiteMessage

string

None.

MetaTag

ContentMetaTagsModel

None.

ContentBlock

Dictionary of string [key] and ContentTextModel [value]

None.

StateContentBlock

Dictionary of integer [key] and Dictionary of string [key] and ContentTextModel [value] [value]

None.

StateIdUrls

Collection of StateIdUrlModel

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "PageName": "sample string 2",
  "SiteMessage": "sample string 3",
  "MetaTag": {
    "Title": "sample string 2",
    "Description": "sample string 3",
    "Keywords": "sample string 4",
    "Author": "sample string 5"
  },
  "ContentBlock": {
    "sample string 1": {
      "ID": 3,
      "BlockID": 4,
      "Content": "sample string 11",
      "Header": "sample string 12",
      "SubHeader": "sample string 13"
    },
    "sample string 2": {
      "ID": 3,
      "BlockID": 4,
      "Content": "sample string 11",
      "Header": "sample string 12",
      "SubHeader": "sample string 13"
    }
  },
  "StateContentBlock": {
    "1": {
      "sample string 1": {
        "ID": 3,
        "BlockID": 4,
        "Content": "sample string 11",
        "Header": "sample string 12",
        "SubHeader": "sample string 13"
      },
      "sample string 2": {
        "ID": 3,
        "BlockID": 4,
        "Content": "sample string 11",
        "Header": "sample string 12",
        "SubHeader": "sample string 13"
      }
    },
    "2": {
      "sample string 1": {
        "ID": 3,
        "BlockID": 4,
        "Content": "sample string 11",
        "Header": "sample string 12",
        "SubHeader": "sample string 13"
      },
      "sample string 2": {
        "ID": 3,
        "BlockID": 4,
        "Content": "sample string 11",
        "Header": "sample string 12",
        "SubHeader": "sample string 13"
      }
    }
  },
  "StateIdUrls": [
    {
      "StateURL": "sample string 1",
      "StateID": 2
    },
    {
      "StateURL": "sample string 1",
      "StateID": 2
    }
  ]
}