Help us improve these docs. Take our quick survey.
curl --request POST \
--url https://api.example.com/feedback/payload_schema \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z",
"feedback_type": "<string>",
"trigger_ref": "<string>",
"sample_limit": 2000
}
'{
"paths": [
{
"json_path": "<string>",
"value_type": "numeric"
}
]
}샘플 행에서 피드백 페이로드 스키마(경로 및 유형)를 검색합니다.
curl --request POST \
--url https://api.example.com/feedback/payload_schema \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z",
"feedback_type": "<string>",
"trigger_ref": "<string>",
"sample_limit": 2000
}
'{
"paths": [
{
"json_path": "<string>",
"value_type": "numeric"
}
]
}Documentation Index
Fetch the complete documentation index at: https://wb-21fd5541-john-wbdocs-2044-rename-serverless-products.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
피드백 페이로드 스키마 탐색 요청입니다.
시작 시간(포함, UTC, ISO 8601)입니다.
종료 시간(미포함, UTC, ISO 8601)입니다. 생략하면 현재 시간이 기본값으로 사용됩니다.
feedback_type으로 필터링합니다.
trigger_ref로 필터링합니다(all-versions의 경우 정확히 일치 또는 접두사 일치).
페이로드 스키마를 탐색할 때 샘플링할 최대 고유 trigger_ref 수입니다. 각 고유 trigger_ref(monitor/source)는 일반적으로 고정된 페이로드 구조를 가지므로, 보통 ref당 페이로드 하나만 샘플링해도 전체 스키마를 확인하기에 충분합니다. 2,000이면 쿼리 속도를 유지하면서 사실상 대부분의 실제 프로젝트를 포괄할 수 있고, 5,000의 하드 상한은 과도한 스캔을 방지합니다.
1 <= x <= 5000성공 응답
탐색된 피드백 페이로드 경로와 유형을 포함한 응답입니다.
추론된 값 유형이 포함된 탐색된 리프 경로입니다.
Show child attributes