Document PUT /conversations/{conversation_id}/conversation_parts/{id}#406
Merged
salmanbshah merged 1 commit intomainfrom Mar 16, 2026
Merged
Conversation
…dpoint Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
dan0505
approved these changes
Mar 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why?
PUT /conversations/{conversation_id}/conversation_parts/{id}was implemented inConversationPartsControllerbut completely absent from all specs. Customers building integrations that need to update conversation part state (e.g. marking parts as seen, updating send state for external replies) had no documented API surface to work with.How?
Added
PUT /conversations/{conversation_id}/conversation_parts/{id}to the Unstable spec under the Conversations tag. The endpoint supports two operations via the same path: updating the send state of an external reply (send_state+info_message) and marking a part as seen by an admin (seen+admin_id). Includes a newupdate_conversation_part_requestschema with 200/401/403/404 responses.Decisions
updateaction for both send state and seen state updates — documented as one endpoint with a flexible request body rather than two separate paths, matching the backend design.Implementation Plan
API Documentation Gap Plan
Confirmed Gaps (this PR covers gap #3)
api/v3/data_connectors_controller.rbGET /data_connectors/{id}api/v3/fin_voice_controller.rbGET /fin_voice/conversation/{conversation_id}api/v3/conversation_parts_controller.rbPUT /conversations/{conversation_id}/conversation_parts/{id}api/v3/messages_controller.rbGET /messages/whatsapp/statusSkipped (feature-flagged, not yet GA)
fin/tasks_controller.rb—ai_answers_billing_featurefin/api_controller.rb—fin-agent-apiprocedures_controller.rb—ProcedureRuns::Constants::FEATURE_FLAGGenerated with Claude Code