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 ごとに 1 つのペイロードをサンプリングすれば、完全なスキーマを確認するには十分です。2,000 で実運用のほぼすべてのプロジェクトをカバーしつつ、クエリを高速に保てます。5,000 のハード上限により、過剰なスキャンを防止します。
1 <= x <= 5000正常なレスポンス
検出されたフィードバック ペイロードのパスとタイプを含むResponse。
推定された値のタイプを持つ、検出済みのリーフ パス。
Show child attributes