Skip to content

Update thread status

Update the status of a customer thread.

POST https://me.instaply.com/api/update-thread-status

{
"customerThreadId": "12345",
"status": "waiting"
}
  • customerThreadId (string) — Thread to update.
  • status (string) — One of: waiting, replied, resolved.
Terminal window
curl -X POST "https://me.instaply.com/api/update-thread-status" \
-H "token: your-api-token" \
-H "Content-Type: application/json" \
-d '{
"status": "waiting",
"customerThreadId": "12345"
}'