跳转到主要内容
POST
/
enrichment
/
mapping
/
schema
/
list
查询schema
curl --request POST \
  --url 'https://api.flashcat.cloud/enrichment/mapping/schema/list?app_key=' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "data": {
    "items": [
      {
        "schema_id": "<string>",
        "schema_name": "<string>",
        "source_labels": [
          "<string>"
        ],
        "result_labels": [
          "<string>"
        ],
        "created_at": 123,
        "updated_at": 123,
        "description": "<string>",
        "team_id": 123,
        "creator_id": 123,
        "updated_by": 123
      }
    ],
    "total": 123
  },
  "error": {
    "code": "<string>",
    "message": "<string>"
  }
}

授权

app_key
string
query
必填

请求头

Content-Type
string

请求体

application/json

The body is of type object.

响应

200 - application/json
data
响应数据 · object
必填
error
错误信息 · object

错误信息,仅失败时存在