Get Thread
GET/chat-svc/thread/:threadId
Fetch information about a specific chat thread by its ID
Request
Path Parameters
threadId stringrequired
Thread ID
Responses
- 200
- 400
- 401
- 500
Thread details successfully retrieved
- application/json
- Schema
- Example (from schema)
Schema
exists boolean
thread
object
createdAt string
id string
title string
Title of the thread.
topicIds string[]
TopicIds defines which topics the thread belongs to. Topics can roughly be thought of as tags for threads.
updatedAt string
userIds string[]
UserIds the ids of the users who can see this thread.
{
"exists": true,
"thread": {
"createdAt": "string",
"id": "string",
"title": "string",
"topicIds": [
"string"
],
"updatedAt": "string",
"userIds": [
"string"
]
}
}
Invalid JSON
- application/json
- Schema
Schema
string
Unauthorized
- application/json
- Schema
Schema
string
Internal Server Error
- application/json
- Schema
Schema
string
Loading...