diff --git a/bandwidth.yml b/bandwidth.yml index 4f0d976..b4542b7 100644 --- a/bandwidth.yml +++ b/bandwidth.yml @@ -1484,7 +1484,7 @@ paths: $ref: '#/components/requestBodies/updateTollFreeVerificationRequestRequest' responses: '202': - description: Accepted + $ref: '#/components/responses/verifyPutResponse' '400': $ref: '#/components/responses/tfvPostBadRequestResponse' '401': @@ -5965,7 +5965,7 @@ components: ageGatedContent: $ref: '#/components/schemas/ageGatedContent' cvToken: - $ref: '#/components/schemas/cvToken' + $ref: '#/components/schemas/cvTokenNullable' verificationUpdateRequest: type: object required: @@ -6016,7 +6016,7 @@ components: ageGatedContent: $ref: '#/components/schemas/ageGatedContent' cvToken: - $ref: '#/components/schemas/cvToken' + $ref: '#/components/schemas/cvTokenNullable' tfvBasicAuthentication: type: object properties: @@ -6469,7 +6469,7 @@ components: blockedReason: $ref: '#/components/schemas/blockedReason' cvToken: - $ref: '#/components/schemas/cvToken' + $ref: '#/components/schemas/cvTokenNullable' tfvSubmissionInfo: type: object properties: @@ -6534,13 +6534,13 @@ components: nullable: true pattern: ^[ -~]{16,64}$ type: string - cvToken: + cvTokenNullable: 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. + 527 political organization, this field should be omitted. Supplying an + empty string will likely result in rejection. minLength: 0 maxLength: 500 nullable: true @@ -7214,6 +7214,8 @@ components: example: description: Service Unavailable Error. type: Service Unavailable + verifyPutResponse: + description: Accepted parameters: accountId: in: path diff --git a/docs/TfvStatus.md b/docs/TfvStatus.md index 8e471e6..6c61c13 100644 --- a/docs/TfvStatus.md +++ b/docs/TfvStatus.md @@ -15,7 +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] +**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. Supplying an empty string will likely result in rejection. | [optional] [default to undefined] ## Example diff --git a/docs/VerificationRequest.md b/docs/VerificationRequest.md index 4e2ee4f..306b236 100644 --- a/docs/VerificationRequest.md +++ b/docs/VerificationRequest.md @@ -23,7 +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] +**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. Supplying an empty string will likely result in rejection. | [optional] [default to undefined] ## Example diff --git a/docs/VerificationUpdateRequest.md b/docs/VerificationUpdateRequest.md index d4bd61f..a920d21 100644 --- a/docs/VerificationUpdateRequest.md +++ b/docs/VerificationUpdateRequest.md @@ -22,7 +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] +**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. Supplying an empty string will likely result in rejection. | [optional] [default to undefined] ## Example diff --git a/models/tfv-status.ts b/models/tfv-status.ts index a20f39d..9ce491c 100644 --- a/models/tfv-status.ts +++ b/models/tfv-status.ts @@ -56,7 +56,7 @@ export interface TfvStatus { */ '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. + * 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. Supplying an empty string will likely result in rejection. */ 'cvToken'?: string | null; } diff --git a/models/verification-request.ts b/models/verification-request.ts index 80569ad..c7963e9 100644 --- a/models/verification-request.ts +++ b/models/verification-request.ts @@ -85,7 +85,7 @@ export interface VerificationRequest { */ '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. + * 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. Supplying an empty string will likely result in rejection. */ 'cvToken'?: string | null; } diff --git a/models/verification-update-request.ts b/models/verification-update-request.ts index 85c83e3..c308ce6 100644 --- a/models/verification-update-request.ts +++ b/models/verification-update-request.ts @@ -84,7 +84,7 @@ export interface VerificationUpdateRequest { */ '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. + * 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. Supplying an empty string will likely result in rejection. */ 'cvToken'?: string | null; }