messages
Update conversation status
Archive or activate a conversation. Requires accountId in request body.
AuthorizationBearer <token>
API key authentication - use your Late API key as a Bearer token
In: header
Path Parameters
conversationIdstring
The conversation ID (id field from list conversations endpoint). This is the platform-specific conversation identifier, not an internal database ID.
accountIdstring
Social account ID
statusstring
Value in
"active" | "archived"Response Body
application/json
application/json
curl -X PUT "https://getlate.dev/api/v1/inbox/conversations/string" \ -H "Content-Type: application/json" \ -d '{ "accountId": "string", "status": "active" }'{
"success": true,
"data": {
"id": "string",
"accountId": "string",
"status": "active",
"platform": "string",
"updatedAt": "2019-08-24T14:15:22Z"
}
}{
"error": "Unauthorized"
}Empty