Skip to content

Commit b6054f7

Browse files
dan0505claude
andauthored
Add email_verified to Contacts create/update request (Preview) (#590)
* Add email_verified to Contacts create/update request (Preview) Adds the email_verified boolean field to the create and update contact request schemas in descriptions/0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * Clarify email_verified requires an email (400 otherwise) email_verified without an email in the same request returns a 400, not a silent no-op; correct the schema descriptions. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 547f7c6 commit b6054f7

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

descriptions/0/api.intercom.io.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30484,6 +30484,11 @@ components:
3048430484
type: string
3048530485
description: The contacts email
3048630486
example: jdoe@example.com
30487+
email_verified:
30488+
type: boolean
30489+
nullable: true
30490+
description: Whether the contact's email address has been verified. Set to true to indicate you have verified the contact owns this email address, or false to mark it as unverified. Must be supplied together with an email in the same request; sending it without an email returns a 400.
30491+
example: true
3048730492
phone:
3048830493
type: string
3048930494
nullable: true
@@ -37944,6 +37949,11 @@ components:
3794437949
type: string
3794537950
description: The contacts email
3794637951
example: jdoe@example.com
37952+
email_verified:
37953+
type: boolean
37954+
nullable: true
37955+
description: Whether the contact's email address has been verified. Set to true to indicate you have verified the contact owns this email address, or false to mark it as unverified. Must be supplied together with an email in the same request; sending it without an email returns a 400.
37956+
example: true
3794737957
phone:
3794837958
type: string
3794937959
nullable: true

0 commit comments

Comments
 (0)