Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.56 KB

File metadata and controls

36 lines (30 loc) · 1.56 KB

Freeclimb::MessageDeliveryWebhook

Properties

Name Type Description Notes
request_type String Value will be messageDelivery - An SMS message has been received by the platform and is being delivered to the customer application associated with the destination number. [optional]
account_id String Account ID associated with your account. [optional]
from String Phone number of the party that initiated the Call (in E.164 format). [optional]
to String Phone number provisioned to you and to which this Call is directed (in E.164 format). [optional]
text String Body of the SMS message. [optional]
direction String Value will be inbound to indicate the receipt of a message into the FreeClimb platform. [optional]
application_id String ID of the application to which the destination number is assigned. [optional]
status String Value will be received to indicate that the platform has successfully received the incoming message. [optional]
phone_number_id String ID of the destination phone number. [optional]
uri String The URI for this resource, relative to the API base URL [optional]

Example

require 'freeclimb'

instance = Freeclimb::MessageDeliveryWebhook.new(
  request_type: null,
  account_id: null,
  from: null,
  to: null,
  text: null,
  direction: null,
  application_id: null,
  status: null,
  phone_number_id: null,
  uri: null
)