Skip to content

Latest commit

 

History

History
48 lines (42 loc) · 4.06 KB

File metadata and controls

48 lines (42 loc) · 4.06 KB

Bandwidth::TfvSubmissionInfo

Properties

Name Type Description Notes
business_address Address [optional]
business_contact Contact [optional]
message_volume Integer Estimated monthly volume of messages from the toll-free number. [optional]
use_case String The category of the use case. [optional]
use_case_summary String A general idea of the use case and customer. [optional]
production_message_content String Example of message content. [optional]
opt_in_workflow OptInWorkflow [optional]
additional_information String Any additional information. [optional]
isv_reseller String ISV name. [optional]
privacy_policy_url String The Toll-Free Verification request privacy policy URL. [optional]
terms_and_conditions_url String The Toll-Free Verification request terms and conditions policy URL. [optional]
business_dba String The company 'Doing Business As'. [optional]
business_registration_number String Government-issued business identifying number. Note: As of October 19th, 2026 this field will be required when `businessEntityType` is not `SOLE_PROPRIETOR`. If this field is provided, `businessRegistrationType` and `businessRegistrationIssuingCountry` are also required. [optional]
business_registration_type BusinessRegistrationTypeEnum [optional]
business_registration_issuing_country String The country issuing the business registration in ISO-3166-1 alpha-3 format. Alpha-2 format is accepted by the API, but alpha-3 is highly encouraged. Note: As of October 19th, 2026 this field will be required when `businessRegistrationNumber` is provided. Registration Type
business_entity_type BusinessEntityTypeEnum [optional]

Example

require 'bandwidth-sdk'

instance = Bandwidth::TfvSubmissionInfo.new(
  business_address: null,
  business_contact: null,
  message_volume: 10000,
  use_case: 2FA,
  use_case_summary: Text summarizing the use case for the toll-free number,
  production_message_content: Production message content,
  opt_in_workflow: null,
  additional_information: Any additional information,
  isv_reseller: Test ISV,
  privacy_policy_url: http://your-company.com/privacyPolicy,
  terms_and_conditions_url: http://your-company.com/termsAndConditions,
  business_dba: Another Company Name Inc.,
  business_registration_number: 12-3456789,
  business_registration_type: null,
  business_registration_issuing_country: USA,
  business_entity_type: null
)