GET
/
api
/
ai
/
session
/
{ai_session_id}
/
qa
/
list
curl --request GET \
  --url https://cite.petal.org/api/ai/session/{ai_session_id}/qa/list \
  --header 'Authorization: Bearer <token>'
[
  {
    "ai_session_id": 123,
    "created_at": "<string>",
    "id": 123,
    "meta": {},
    "query": "<string>",
    "response": "<string>",
    "task_id": "<string>",
    "task_status": "<string>",
    "user_id": 123,
    "user_rating": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

ai_session_id
integer
required

The unique ID of the AI Session

Response

200
application/json
OK

The response is of type object[].