nexmo@0.2.2
Functions
- execute(operations) ⇒
Operation
Execute a sequence of operations. Wraps
@openfn/language-common/execute
, and prepends initial state for http.- sendSMS(from, toNumber, message) ⇒
Operation
Sends an SMS message to a specific phone number
execute(operations) ⇒ Operation
Execute a sequence of operations.
Wraps @openfn/language-common/execute
, and prepends initial state for http.
Kind: global function
Param | Type | Description |
---|---|---|
operations | Operations | Operations to be performed. |
Example
execute(
create('foo'),
delete('bar')
)(state)
sendSMS(from, toNumber, message) ⇒ Operation
Sends an SMS message to a specific phone number
Kind: global function
Access: public
Param | Type | Description |
---|---|---|
from | String | Name or number the message should be sent from. |
toNumber | String | Destination phone number. |
message | String | Text message |
Example
sendSMS("OpenFn", "phoneNumber", "Hello World!")