POST GetViews

Request Information

URI Parameters

None.

Body Parameters

ViewModel
NameDescriptionTypeAdditional information
listName

string

Required

Data type: Text

String length: inclusive between 1 and 100

viewName

string

Required

Data type: Text

String length: inclusive between 1 and 100

userName

string

Required

Data type: Text

Matching regular expression pattern: ^([a-zA-Z0-9\.\&\'\-]+)$

String length: inclusive between 3 and 100

Request Formats

application/json, text/json

Sample:
{
  "listName": "sample string 1",
  "viewName": "sample string 2",
  "userName": "sample string 3"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ViewModelFields
NameDescriptionTypeAdditional information
listData

Collection of Dictionary of string [key] and Object [value]

None.

viewFields

Dictionary of string [key] and string [value]

None.

Response Formats

application/json, text/json

Sample:
{
  "listData": [
    {
      "sample string 1": {},
      "sample string 3": {}
    },
    {
      "sample string 1": {},
      "sample string 3": {}
    }
  ],
  "viewFields": {
    "sample string 1": "sample string 2",
    "sample string 3": "sample string 4"
  }
}