Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.15 KB

File metadata and controls

28 lines (22 loc) · 1.15 KB

Bandwidth::BlockedWebhook

Properties

Name Type Description Notes
account_id String User's account ID. [optional]
phone_number String Toll-free telephone number in E.164 format. [optional]
status TfvCallbackStatusEnum [optional]
internal_ticket_number String Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number. [optional]
blocked Boolean Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. [optional]
blocked_reason String The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. [optional]

Example

require 'bandwidth-sdk'

instance = Bandwidth::BlockedWebhook.new(
  account_id: 1234567,
  phone_number: +18005555555,
  status: null,
  internal_ticket_number: acde070d-8c4c-4f0d-9d8a-162843c10333,
  blocked: true,
  blocked_reason: Toll-free number was used to send spam messages
)