Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.23 KB

PinlessDialinInner.md

File metadata and controls

24 lines (18 loc) · 1.23 KB

Daily::PinlessDialinInner

Properties

Name Type Description Notes
phone_number String Associate a purchased phone number to the Pinless dialin workflow. [optional]
room_creation_api String The webhook URL to trigger when an incoming call arrives. Typically, you will need to spin-up a Daily meeting room and patch the incoming call to the room. Read more in the pinless/sip interconnect guide. [optional]
name_prefix String An identifier or name to associate to the workflow. [optional]
sip_uri String This is not a settable value, Daily returns the `sip_uri` in cases where you want to directly send the call to the SIP URI instead of the phone_number. If you dial in to the `phone_number` or this `sip_uri`, the webhook will be triggered. [optional]

Example

require 'daily-ruby'

instance = Daily::PinlessDialinInner.new(
  phone_number: null,
  room_creation_api: null,
  name_prefix: null,
  sip_uri: null
)