Get one Thread in a Forward Session.
GET /api/v1/forward/sessions/{session_id}/threads/{thread_id}
Request headers
| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer <PAT or SAT> |
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| session_id | string | Yes | Session ID with the sess_ prefix. |
| thread_id | string | Yes | Thread ID with the sthr_ prefix that belongs to the Session. |
Example request
Example response
HTTP 200 OK
Errors
| HTTP | Type | Code | Condition |
|---|---|---|---|
| 401 | authentication_error | authentication_required | The PAT or SAT is invalid or expired. |
| 404 | not_found | session_not_found | The Session does not exist or is not visible to the caller. |
| 404 | not_found_error | thread_not_found | The Thread does not exist or does not belong to the Session. |
| 502 | api_error | runtime_unavailable | The Thread runtime service is temporarily unavailable. |
Notes
- This endpoint can retrieve archived Threads and is the authoritative source for final Thread state.
- Thread lifecycle Events are for notification and recovery. Do not use them as the only source of an archive result.