Skip to main content
GET
/
v1
/
data-tables
/
{dataTableId}
Read Data Table
curl --request GET \
  --url https://localtest.mindbridge.ai/api/v1/data-tables/{dataTableId} \
  --header 'Authorization: Bearer <token>'
{
  "id": {},
  "engagementId": {},
  "analysisId": {},
  "analysisResultId": {},
  "logicalName": "<string>",
  "type": "<string>",
  "columns": [
    {
      "originalName": "<string>",
      "field": "<string>",
      "mindBridgeField": "<string>",
      "type": "STRING",
      "nullable": true,
      "equalitySearch": true,
      "rangeSearch": true,
      "sortable": true,
      "containsSearch": true,
      "keywordSearch": true,
      "caseInsensitiveSubstringSearch": true,
      "caseInsensitivePrefixSearch": true,
      "filterOnly": true,
      "typeaheadDataTableId": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

dataTableId
string
required

Response

OK

id
object

The unique object identifier.

engagementId
object

Identifies the associated engagement.

analysisId
object

Identifies the associated analysis.

analysisResultId
object

Identifies the associated analysis results.

logicalName
string

The name of the data table.

type
string

The type of data table.

columns
Data Table Column · object[]

Details about the data table columns.