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>",
"direction": "asc"
}
],
"limit": 10,
"offset": 0
}
'