Document bulk create and bulk delete contacts (Preview)#577
Merged
Conversation
Adds POST /contacts/bulk (strict create) and POST /contacts/bulk/delete (permanent delete), mirroring the existing bulk update endpoint. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
…ints Adds avatar, owner_id, unsubscribed_from_emails, and tags (add/remove) to bulk create/update request bodies to match the single contact create/update endpoints. Renames the update identifier field to external_id and owner_id to string to match the rest of the contact schemas, drops the undocumented companies/company properties, and clarifies tag id requirements and best-effort application behavior.
e77bb79 to
66488e7
Compare
dan0505
approved these changes
Jul 6, 2026
Align the bulk create/update/delete contact sections with developer-docs
PR #1018: trim endpoint descriptions, drop the phone example and reorder
bulk_update fields, and move /contacts/bulk/delete ahead of
/contacts/bulk/{id}. Sections are now byte-identical to the docs source of truth.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
dan0505
approved these changes
Jul 6, 2026
VarshSuresh
added a commit
that referenced
this pull request
Jul 7, 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?
Adds parity bulk create/delete operations for contacts to the Preview API surface, alongside the existing bulk update endpoint, so SDKs generated from this spec include them.
How?
Added
POST /contacts/bulk(strict create) andPOST /contacts/bulk/delete(permanent delete) paths, plus two new request schemas (bulk_create_contacts_request,bulk_delete_contacts_request), reusing the existingcontacts_bulk_jobresponse schema.Generated with Claude Code