POST /chat/chatrooms/{id}/thread
curl \
-X POST https://domain.tld/api/v2/chat/chatrooms/{id}/thread \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-H "X-Popsell-Brand: 3" \
-d '{"thread_id":"string"}'
Request examples
# Headers
X-Popsell-Brand: 3
# Payload
{
"thread_id": "string"
}
Response examples (200)
{
"thread_id": "string"
}
Response examples (401)
{
"message": "Unauthorized."
}