StateSet Response
- Core Concepts
- API Reference
- Core Resources
- Agents
- Embeddings
- Responses
- Messages
- Rules
- Attributes
- Memories
- Examples
- Functions
- Schedules
- Function Parameters
- Channels
- Sessions
- Users
- Settings
Channels
Update Channel Thread
This endpoint creates a new channel thread
PUT
/
v1
/
channel_thread
Copy
Ask AI
curl --location --request PUT 'https://api.stateset.com/v1/channel_thread' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": ""
}'
Copy
Ask AI
{
"data": {
"insert_channel_thread": {
"returning": [
{
"id": "",
"name": "",
"uuid": "",
"user_id": ""
}
]
}
}
}
Body
This is the ID of the channel thread to be created.
Response
Indicates whether the call was successful. 1 if successful, 0 if not.
Copy
Ask AI
curl --location --request PUT 'https://api.stateset.com/v1/channel_thread' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": ""
}'
Copy
Ask AI
{
"data": {
"insert_channel_thread": {
"returning": [
{
"id": "",
"name": "",
"uuid": "",
"user_id": ""
}
]
}
}
}
Copy
Ask AI
curl --location --request PUT 'https://api.stateset.com/v1/channel_thread' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": ""
}'
Copy
Ask AI
{
"data": {
"insert_channel_thread": {
"returning": [
{
"id": "",
"name": "",
"uuid": "",
"user_id": ""
}
]
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.