Skip to main content
GET
/
connectors
/
{uuid}
/
detail
Fetch table detail for a saved connector
curl --request GET \
  --url https://api.artie.com/connectors/{uuid}/detail \
  --header 'Authorization: Bearer <token>'
{
  "columns": [
    {
      "metadata": {
        "comment": "<string>",
        "dataType": "<string>",
        "defaultValue": "<string>",
        "isPrimaryKey": true,
        "notNull": true
      },
      "name": "<string>"
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "isView": true,
  "metadata": [
    {
      "isDate": true,
      "key": "<string>",
      "value": "<unknown>"
    }
  ],
  "modifiedAt": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "schema": "<string>",
  "unreadable": true
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

API key passed as a Bearer token in the Authorization header.

Path Parameters

uuid
string
required

Response

OK

columns
object[]
createdAt
string<date-time> | null
isView
boolean
metadata
object[]
modifiedAt
string<date-time> | null
name
string
schema
string
unreadable
boolean