DEV Community

Discussion on: From Python to C#

Collapse
 
oneglash profile image
oneglash

import telnyx

telnyx.api_key = "YOUR_API_KEY"

your_telnyx_number = "+13115552368"
destination_number = "+13115552367"

telnyx.Message.create(
from_=your_telnyx_number,
to=destination_number,
text="Hello, world!",
)