跳转到主要内容
GET
/
api
/
publicapi
/
v1
/
catalogs
/
{catalogId}
获取指定目录的详细信息
curl --request GET \
  --url https://vantage-us.abbyy.com/api/publicapi/v1/catalogs/{catalogId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "columns": [
    {
      "name": "<string>",
      "type": "Text",
      "notEmpty": true
    }
  ],
  "rowCount": 123
}

授权

Authorization
string
header
必填

The access token received from the authorization server in the OAuth 2.0 flow.

路径参数

catalogId
string
必填

目录 ID。可在所有目录的列表中找到。

响应

目录信息已成功返回

id
string
必填

目录的唯一标识符

Minimum string length: 1
name
string
必填

目录名称

Minimum string length: 1
columns
object[]
必填

目录中的列

rowCount
integer<int32>
必填

目录中的总行数