In-app assistant
GET /assistant/sessions/{id} 工作階段或 API 金鑰
One owned conversation with its full transcript.
路徑參數
idstring (UUID) 必填- The session id.範例
b2f1c2b0-6e2a-4c9e-9c2e-0a1b2c3d4e5f
curl "https://freehire.me/api/v1/assistant/sessions/<id>" -H "Authorization: Bearer $FREEHIRE_API_KEY"{
"data": {
"session": { "id": "b2f1c2b0-6e2a-4c9e-9c2e-0a1b2c3d4e5f", "preset": "chat", "label": "Relocating to Berlin?" },
"messages": [
{ "seq": 1, "role": "user", "content": { "text": "Should I relocate for this role?" } },
{ "seq": 2, "role": "assistant", "content": { "text": "...", "...": "..." } }
]
}
}