POST
/chat/chatrooms/{id}/thread
curl \
--request POST https://domain.tld/api/v2/chat/chatrooms/{id}/thread \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-Popsell-Brand: 3" \
--data '{"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."
}