查询data
POST
/enrichment/mapping/data/list最后修改时间: 1 年前
请求参数
Header 参数
Content-Type
string
可选
示例值:
application/json
Body 参数application/json
schema_id
string
schema ID
query
object (Labels)
匹配条件
不设置过滤,否则query必须包含schema中source_labels中所有字段和条件
^[a-zA-Z_][a-zA-Z0-9_]*$
string
(pattern property)
key为任意label名称,值为字符串
label格式需要满足正则^[a-zA-Z_][a-zA-Z0-9_]*$,value的长度不超过512字节
<= 512 字符
search_after_ctx
string
游标分页,不设置为第一页。与p参数二选一
详细解释,请参考 关于分页
p
integer
传统分页,不设置从第一页开始,默认值为1,与search_after_ctx参数二选一
基于传统分页时设置,当设置p参数时,p*limit不得超过10000,否则返回参数错误。详细解释,请参考 关于分页
默认值:
1
示例
{
"schema_id": "string",
"query": {},
"search_after_ctx": "string",
"p": 1,
"limit": 20
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
error
object (DutyError)
可选
code
enum<string>
错误码
枚举值:
InvalidParameterInvalidContentTypeUnauthorizedAccessDeniedMethodNotAllowedRequestTooFrequentlyRequestVerifyRequiredDangerousOperationRequestLockedRouteNotFoundBalanceNotEnoughUndonedOrderExistResourceNotFoundInternalErrorReferenceExist
message
string
错误描述
示例
未设置
最后修改时间: 1 年前