Skip to main content
GET
/
activeviam
/
database
/
rest
/
v10
/
discovery
/
tables
/
{tableName}
Get the description of the table.
curl --request GET \
  --url http://localhost:9090/activeviam/database/rest/v10/discovery/tables/{tableName}
{
  "canDelete": true,
  "canEdit": true,
  "canInsert": true,
  "fields": [
    {
      "defaultValue": {},
      "hasParser": true,
      "index": 123,
      "name": "<string>",
      "readOnly": true,
      "type": "<string>"
    }
  ],
  "keyFields": [
    123
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

tableName
string
required

Desired table name.

Response

200 - application/json

Table description returned successfully.

canDelete
boolean
canEdit
boolean
canInsert
boolean
fields
object[]
keyFields
integer<int32>[]