Update thread status
Update the status of a customer thread.
Endpoint
Section titled “Endpoint”POST https://me.instaply.com/api/update-thread-status
Request body
Section titled “Request body”{ "customerThreadId": "12345", "status": "waiting"}Fields
Section titled “Fields”customerThreadId(string) — Thread to update.status(string) — One of:waiting,replied,resolved.
Example (curl)
Section titled “Example (curl)”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" }'