diff --git a/bandwidth.yml b/bandwidth.yml index 0a0121c..e41dd6a 100644 --- a/bandwidth.yml +++ b/bandwidth.yml @@ -5228,6 +5228,35 @@ components: PUT. example: true type: boolean + blocked: + description: >- + Whether a Toll-Free Verification is blocked. This attribute will only be + defined when the number is blocked. (Not Available Until 5/28/2025) + example: true + type: boolean + blockedReason: + description: >- + The reason why the Toll-Free Verification is blocked. This attribute + will only be defined when the number is blocked. (Not Available Until + 5/28/2025) + example: Toll-free number was used to send spam messages + type: string + privacyPolicyUrl: + description: >- + The Toll-Free Verification request privacy policy URL. (Not Available + Until 5/28/2025) + example: http://your-company.com/privacyPolicyUrl.pdf + type: string + termsAndConditionsUrl: + description: >- + The Toll-Free Verification request terms and conditions policy URL. (Not + Available Until 5/28/2025) + example: http://your-company.com/termsAndConditionsUrl.pdf + type: string + businessDBA: + description: The company 'Doing Business As'. (Not Available Until 5/28/2025) + example: SecondCompany Name + type: string additionalDenialReason: properties: statusCode: @@ -5308,6 +5337,12 @@ components: example: Any additional information isvReseller: $ref: '#/components/schemas/isvReseller' + privacyPolicyUrl: + $ref: '#/components/schemas/privacyPolicyUrl' + termsAndConditionsUrl: + $ref: '#/components/schemas/termsAndConditionsUrl' + businessDBA: + $ref: '#/components/schemas/businessDBA' verificationUpdateRequest: type: object required: @@ -5341,6 +5376,12 @@ components: $ref: '#/components/schemas/additionalInformation' isvReseller: $ref: '#/components/schemas/isvReseller' + privacyPolicyUrl: + $ref: '#/components/schemas/privacyPolicyUrl' + termsAndConditionsUrl: + $ref: '#/components/schemas/termsAndConditionsUrl' + businessDBA: + $ref: '#/components/schemas/businessDBA' tfvBasicAuthentication: type: object properties: @@ -5419,6 +5460,10 @@ components: $ref: '#/components/schemas/resubmitAllowed' status: $ref: '#/components/schemas/tfvUnverifiedStatus' + blocked: + $ref: '#/components/schemas/blocked' + blockedReason: + $ref: '#/components/schemas/blockedReason' verificationWebhook: type: object properties: @@ -5501,6 +5546,7 @@ components: minLength: 0 maxLength: 500 nullable: true + example: Any additional information optInWorkflow: type: object nullable: false @@ -5762,6 +5808,10 @@ components: example: '2021-06-08T06:45:13.0Z' submission: $ref: '#/components/schemas/tfvSubmissionInfo' + blocked: + $ref: '#/components/schemas/blocked' + blockedReason: + $ref: '#/components/schemas/blockedReason' tfvSubmissionInfo: type: object properties: @@ -5787,6 +5837,12 @@ components: $ref: '#/components/schemas/additionalInformation' isvReseller: $ref: '#/components/schemas/isvReseller' + privacyPolicyUrl: + $ref: '#/components/schemas/privacyPolicyUrl' + termsAndConditionsUrl: + $ref: '#/components/schemas/termsAndConditionsUrl' + businessDBA: + $ref: '#/components/schemas/businessDBA' tfvStatusEnum: type: string enum: diff --git a/models/tfv-status.ts b/models/tfv-status.ts index 28f0a44..2c79fb1 100644 --- a/models/tfv-status.ts +++ b/models/tfv-status.ts @@ -74,6 +74,18 @@ export interface TfvStatus { * @memberof TfvStatus */ 'submission'?: TfvSubmissionInfo; + /** + * Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025) + * @type {boolean} + * @memberof TfvStatus + */ + 'blocked'?: boolean; + /** + * The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025) + * @type {string} + * @memberof TfvStatus + */ + 'blockedReason'?: string; } diff --git a/models/tfv-submission-info.ts b/models/tfv-submission-info.ts index 46182ba..6cf70d7 100644 --- a/models/tfv-submission-info.ts +++ b/models/tfv-submission-info.ts @@ -83,5 +83,23 @@ export interface TfvSubmissionInfo { * @memberof TfvSubmissionInfo */ 'isvReseller'?: string | null; + /** + * The Toll-Free Verification request privacy policy URL. (Not Available Until 5/28/2025) + * @type {string} + * @memberof TfvSubmissionInfo + */ + 'privacyPolicyUrl'?: string; + /** + * The Toll-Free Verification request terms and conditions policy URL. (Not Available Until 5/28/2025) + * @type {string} + * @memberof TfvSubmissionInfo + */ + 'termsAndConditionsUrl'?: string; + /** + * The company \'Doing Business As\'. (Not Available Until 5/28/2025) + * @type {string} + * @memberof TfvSubmissionInfo + */ + 'businessDBA'?: string; } diff --git a/models/verification-denial-webhook.ts b/models/verification-denial-webhook.ts index f8fb6a3..e97508c 100644 --- a/models/verification-denial-webhook.ts +++ b/models/verification-denial-webhook.ts @@ -71,5 +71,17 @@ export interface VerificationDenialWebhook { * @memberof VerificationDenialWebhook */ 'status'?: string; + /** + * Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025) + * @type {boolean} + * @memberof VerificationDenialWebhook + */ + 'blocked'?: boolean; + /** + * The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. (Not Available Until 5/28/2025) + * @type {string} + * @memberof VerificationDenialWebhook + */ + 'blockedReason'?: string; } diff --git a/models/verification-request.ts b/models/verification-request.ts index be367c3..e17ccb7 100644 --- a/models/verification-request.ts +++ b/models/verification-request.ts @@ -89,5 +89,23 @@ export interface VerificationRequest { * @memberof VerificationRequest */ 'isvReseller'?: string | null; + /** + * The Toll-Free Verification request privacy policy URL. (Not Available Until 5/28/2025) + * @type {string} + * @memberof VerificationRequest + */ + 'privacyPolicyUrl'?: string; + /** + * The Toll-Free Verification request terms and conditions policy URL. (Not Available Until 5/28/2025) + * @type {string} + * @memberof VerificationRequest + */ + 'termsAndConditionsUrl'?: string; + /** + * The company \'Doing Business As\'. (Not Available Until 5/28/2025) + * @type {string} + * @memberof VerificationRequest + */ + 'businessDBA'?: string; } diff --git a/models/verification-update-request.ts b/models/verification-update-request.ts index 7e23314..96ec2ed 100644 --- a/models/verification-update-request.ts +++ b/models/verification-update-request.ts @@ -83,5 +83,23 @@ export interface VerificationUpdateRequest { * @memberof VerificationUpdateRequest */ 'isvReseller'?: string | null; + /** + * The Toll-Free Verification request privacy policy URL. (Not Available Until 5/28/2025) + * @type {string} + * @memberof VerificationUpdateRequest + */ + 'privacyPolicyUrl'?: string; + /** + * The Toll-Free Verification request terms and conditions policy URL. (Not Available Until 5/28/2025) + * @type {string} + * @memberof VerificationUpdateRequest + */ + 'termsAndConditionsUrl'?: string; + /** + * The company \'Doing Business As\'. (Not Available Until 5/28/2025) + * @type {string} + * @memberof VerificationUpdateRequest + */ + 'businessDBA'?: string; }