Document bulk create and bulk delete contacts (Preview)#577
Open
VarshSuresh wants to merge 2 commits into
Open
Document bulk create and bulk delete contacts (Preview)#577VarshSuresh wants to merge 2 commits into
VarshSuresh wants to merge 2 commits into
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.
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