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::FailureWebhook

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]
error_code String An error code indicating what error was encountered. This code can be interpreted as an HTTP status code in regards to the error that was encountered. [optional]
error_message String A description of the error that was encountered. [optional]
errors Array<String> Details of the errors that were encountered when processing the request. [optional]
internal_ticket_number String Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number. [optional]

Example

require 'bandwidth-sdk'

instance = Bandwidth::FailureWebhook.new(
  account_id: 1234567,
  phone_number: +18005555555,
  error_code: 400,
  error_message: cannot process request.,
  errors: null,
  internal_ticket_number: acde070d-8c4c-4f0d-9d8a-162843c10333
)