Preview API: document POST /contacts/merge duplicate validation#565
Merged
Conversation
marcmlc
approved these changes
Jun 25, 2026
Comment on lines
+29819
to
+29821
| description: Set to `true` to merge two contacts that are not duplicates | ||
| (they share no matching email or phone). Has no effect on API versions | ||
| that do not enforce duplicate validation on merge. |
Contributor
There was a problem hiding this comment.
Suggested change
| description: Set to `true` to merge two contacts that are not duplicates | |
| (they share no matching email or phone). Has no effect on API versions | |
| that do not enforce duplicate validation on merge. | |
| description: Set to `true` to merge two contacts that are not duplicates | |
| (they share no matching email or phone). |
can follow up nit
marcmlc
approved these changes
Jun 25, 2026
Add `skip_duplicate_validation` to the Preview `merge_contacts_request` schema, an override request example, and the `400 invalid_merge` response on the MergeContact operation. Affects the Preview (descriptions/0) spec only; stable versions are unaffected. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Trim the trailing scope qualifier from the property description. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
541af5f to
6a87506
Compare
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?
The Preview API's
POST /contacts/mergeendpoint now rejects merges of contacts that are not duplicates (no matching email or phone) with a400 invalid_mergeerror, and accepts askip_duplicate_validationflag to override that check. SDKs and the Postman collection are generated from this spec, so it needs to expose the new request field and document the error response.How?
Adds the
skip_duplicate_validationboolean to the Previewmerge_contacts_requestschema, an override request example, and the400 invalid_mergeresponse on the MergeContact operation. Scoped to the Preview spec (descriptions/0); stable versions are unaffected.Generated with Claude Code