Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 4.24 KB

File metadata and controls

50 lines (43 loc) · 4.24 KB

TfvSubmissionInfo

Properties

Name Type Description Notes
businessAddress Address [optional] [default to undefined]
businessContact Contact [optional] [default to undefined]
messageVolume number Estimated monthly volume of messages from the toll-free number. [optional] [default to undefined]
useCase string The category of the use case. [optional] [default to undefined]
useCaseSummary string A general idea of the use case and customer. [optional] [default to undefined]
productionMessageContent string Example of message content. [optional] [default to undefined]
optInWorkflow OptInWorkflow [optional] [default to undefined]
additionalInformation string Any additional information. [optional] [default to undefined]
isvReseller string ISV name. [optional] [default to undefined]
privacyPolicyUrl string The Toll-Free Verification request privacy policy URL. [optional] [default to undefined]
termsAndConditionsUrl string The Toll-Free Verification request terms and conditions policy URL. [optional] [default to undefined]
businessDba string The company 'Doing Business As'. [optional] [default to undefined]
businessRegistrationNumber 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] [default to undefined]
businessRegistrationType BusinessRegistrationTypeEnum [optional] [default to undefined]
businessRegistrationIssuingCountry 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
businessEntityType BusinessEntityTypeEnum [optional] [default to undefined]

Example

import { TfvSubmissionInfo } from 'bandwidth-sdk';

const instance: TfvSubmissionInfo = {
    businessAddress,
    businessContact,
    messageVolume,
    useCase,
    useCaseSummary,
    productionMessageContent,
    optInWorkflow,
    additionalInformation,
    isvReseller,
    privacyPolicyUrl,
    termsAndConditionsUrl,
    businessDba,
    businessRegistrationNumber,
    businessRegistrationType,
    businessRegistrationIssuingCountry,
    businessEntityType,
};

[Back to Model list] [Back to API list] [Back to README]