Feedback Query
curl --request POST \
--url https://api.example.com/feedback/query \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"fields": [
"id",
"feedback_type",
"payload.note"
],
"query": {
"$expr": {
"$and": [
{
"$literal": "<string>"
}
]
}
},
"sort_by": [
{
"field": "<string>"
}
],
"limit": 10,
"offset": 0
}
'{
"result": [
{}
]
}Feedback Query
Query for feedback.
POST
/
feedback
/
query
Feedback Query
curl --request POST \
--url https://api.example.com/feedback/query \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"fields": [
"id",
"feedback_type",
"payload.note"
],
"query": {
"$expr": {
"$and": [
{
"$literal": "<string>"
}
]
}
},
"sort_by": [
{
"field": "<string>"
}
],
"limit": 10,
"offset": 0
}
'{
"result": [
{}
]
}Documentation Index
Fetch the complete documentation index at: https://wb-21fd5541-dbrian-docs-2514-bedrock-agents.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
Response
Successful Response
Was this page helpful?
⌘I