diff --git a/bandwidth.yml b/bandwidth.yml index d7c3295..22b13ce 100644 --- a/bandwidth.yml +++ b/bandwidth.yml @@ -5956,6 +5956,8 @@ components: $ref: '#/components/schemas/helpMessageResponse' ageGatedContent: $ref: '#/components/schemas/ageGatedContent' + cvToken: + $ref: '#/components/schemas/cvToken' verificationUpdateRequest: type: object required: @@ -6005,6 +6007,8 @@ components: $ref: '#/components/schemas/helpMessageResponse' ageGatedContent: $ref: '#/components/schemas/ageGatedContent' + cvToken: + $ref: '#/components/schemas/cvToken' tfvBasicAuthentication: type: object properties: @@ -6456,6 +6460,8 @@ components: $ref: '#/components/schemas/blocked' blockedReason: $ref: '#/components/schemas/blockedReason' + cvToken: + $ref: '#/components/schemas/cvToken' tfvSubmissionInfo: type: object properties: @@ -6520,6 +6526,18 @@ components: nullable: true pattern: ^[ -~]{16,64}$ type: string + cvToken: + type: string + description: >- + The token provided by Campaign Verify to validate your political use + case. Only required for 527 political organizations. If you are not a + 527 political organization, this field should be omitted. If you pass an + empty string, it will be passed along and potentially rejected. + minLength: 0 + maxLength: 500 + nullable: true + example: >- + cv.user123|sess456|mno|tfree|read_write|X7yZ9aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789aBcDeFgHiJkLmNoPqRsTuVw responses: createMessageResponse: description: Accepted diff --git a/docs/TfvStatus.md b/docs/TfvStatus.md index fea78e2..8e471e6 100644 --- a/docs/TfvStatus.md +++ b/docs/TfvStatus.md @@ -15,6 +15,7 @@ Name | Type | Description | Notes **submission** | [**TfvSubmissionInfo**](TfvSubmissionInfo.md) | | [optional] [default to undefined] **blocked** | **boolean** | Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. | [optional] [default to undefined] **blockedReason** | **string** | The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. | [optional] [default to undefined] +**cvToken** | **string** | The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. | [optional] [default to undefined] ## Example @@ -32,6 +33,7 @@ const instance: TfvStatus = { submission, blocked, blockedReason, + cvToken, }; ``` diff --git a/docs/VerificationRequest.md b/docs/VerificationRequest.md index 7071e56..4e2ee4f 100644 --- a/docs/VerificationRequest.md +++ b/docs/VerificationRequest.md @@ -23,6 +23,7 @@ Name | Type | Description | Notes **businessEntityType** | [**BusinessEntityTypeEnum**](BusinessEntityTypeEnum.md) | | [optional] [default to undefined] **helpMessageResponse** | **string** | A message that gets sent to users requesting help. | [optional] [default to undefined] **ageGatedContent** | **boolean** | Indicates whether the content is age-gated. | [optional] [default to undefined] +**cvToken** | **string** | The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. | [optional] [default to undefined] ## Example @@ -48,6 +49,7 @@ const instance: VerificationRequest = { businessEntityType, helpMessageResponse, ageGatedContent, + cvToken, }; ``` diff --git a/docs/VerificationUpdateRequest.md b/docs/VerificationUpdateRequest.md index a372076..d4bd61f 100644 --- a/docs/VerificationUpdateRequest.md +++ b/docs/VerificationUpdateRequest.md @@ -22,6 +22,7 @@ Name | Type | Description | Notes **businessEntityType** | [**BusinessEntityTypeEnum**](BusinessEntityTypeEnum.md) | | [optional] [default to undefined] **helpMessageResponse** | **string** | A message that gets sent to users requesting help. | [optional] [default to undefined] **ageGatedContent** | **boolean** | Indicates whether the content is age-gated. | [optional] [default to undefined] +**cvToken** | **string** | The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. | [optional] [default to undefined] ## Example @@ -46,6 +47,7 @@ const instance: VerificationUpdateRequest = { businessEntityType, helpMessageResponse, ageGatedContent, + cvToken, }; ``` diff --git a/models/tfv-status.ts b/models/tfv-status.ts index 8330fcf..a20f39d 100644 --- a/models/tfv-status.ts +++ b/models/tfv-status.ts @@ -55,6 +55,10 @@ export interface TfvStatus { * The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. */ 'blockedReason'?: string; + /** + * The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. + */ + 'cvToken'?: string | null; } diff --git a/models/verification-request.ts b/models/verification-request.ts index 409b383..80569ad 100644 --- a/models/verification-request.ts +++ b/models/verification-request.ts @@ -84,6 +84,10 @@ export interface VerificationRequest { * Indicates whether the content is age-gated. */ 'ageGatedContent'?: boolean; + /** + * The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. + */ + 'cvToken'?: string | null; } diff --git a/models/verification-update-request.ts b/models/verification-update-request.ts index 5e6d90e..85c83e3 100644 --- a/models/verification-update-request.ts +++ b/models/verification-update-request.ts @@ -83,6 +83,10 @@ export interface VerificationUpdateRequest { * Indicates whether the content is age-gated. */ 'ageGatedContent'?: boolean; + /** + * The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. If you pass an empty string, it will be passed along and potentially rejected. + */ + 'cvToken'?: string | null; }