메인 콘텐츠로 건너뛰기
POST
/
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>",
      "direction": "asc"
    }
  ],
  "limit": 10,
  "offset": 0
}
'
{
  "result": [
    {}
  ]
}

인증

Authorization
string
header
필수

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

본문

application/json
project_id
string
필수
예시:

"entity/project"

fields
string[] | null
예시:
["id", "feedback_type", "payload.note"]
query
Query · object
sort_by
SortBy · object[] | null
limit
integer | null
예시:

10

offset
integer | null
예시:

0

응답

성공 응답

result
Result · object[]
필수