Authorization: Bearer ********************curl --location '/chatkit/threads//items?limit=&order=&after=&before=' \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "string",
"object": "chatkit.thread_item",
"created_at": 0,
"thread_id": "string",
"type": "chatkit.user_message",
"content": [
{
"type": "input_text",
"text": "string"
}
],
"attachments": [
{
"type": "image",
"id": "string",
"name": "string",
"mime_type": "string",
"preview_url": "http://example.com"
}
],
"inference_options": {
"tool_choice": {
"id": "string"
},
"model": "string"
}
}
],
"first_id": "string",
"last_id": "string",
"has_more": true
}