GET api/attributetable

Returns List of current attribute tables

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

attribute table details

Collection of AttributeTable
NameDescriptionTypeAdditional information
id

integer

None.

title

string

None.

numOfCols

integer

None.

columns

Collection of AttributeTableColumn

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "title": "sample string 2",
    "numOfCols": 3,
    "columns": [
      {
        "name": "sample string 1",
        "keycolumn": true
      },
      {
        "name": "sample string 1",
        "keycolumn": true
      }
    ]
  },
  {
    "id": 1,
    "title": "sample string 2",
    "numOfCols": 3,
    "columns": [
      {
        "name": "sample string 1",
        "keycolumn": true
      },
      {
        "name": "sample string 1",
        "keycolumn": true
      }
    ]
  }
]