GET api/attributetable

Retrieves all non-deleted attribute tables and their associated column metadata.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

On success: HTTP 200 OK with a list of `AttributeTable` objects including their column metadata. On failure: HTTP 400 Bad Request with a generic "No data" message.

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, application/scim+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
      }
    ]
  }
]