From ff00ad2f08bc32dcbd243081fd43816fe3b1b5a9 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sat, 1 Jul 2023 16:47:30 -0400 Subject: [PATCH] Updated Notify_nexmo (markdown) --- Notify_nexmo.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Notify_nexmo.md b/Notify_nexmo.md index d846145..d2fdaba 100644 --- a/Notify_nexmo.md +++ b/Notify_nexmo.md @@ -5,7 +5,7 @@ * **Message Limit**: 160 Characters per message ### Account Setup -To use Vonage, you will need to acquire your _API Key_ and _API Secret_. Both of these are accessible via the [Nexmo Dashboard](https://dashboard.nexmo.com/getting-started-guide). +To use Vonage, you will need to acquire your _API Key_ and _API Secret_. Both of these are accessible via the [Vonage Dashboard](https://dashboard.nexmo.com/getting-started-guide). The **{FromPhoneNo}** must be a number provided to you through Nexmo @@ -22,13 +22,13 @@ If no _ToPhoneNo_ is specified, then the _FromPhoneNo_ will be messaged instead; ### Parameter Breakdown | Variable | Required | Description | --------------- | -------- | ----------- -| ApiKey | Yes | The _API Key_ associated with your Nexmo account. This is available to you via the [Nexmo Dashboard](https://dashboard.nexmo.com/getting-started-guide). -| ApiSecret | Yes | The _API Secret_ associated with your Nexmo account. This is available to you via the [Nexmo Dashboard](https://dashboard.nexmo.com/getting-started-guide). -| FromPhoneNo | Yes | This must be a _From Phone Number_ that has been provided to you from the Nexmo website. +| ApiKey | Yes | The _API Key_ associated with your Nexmo account. This is available to you via the [Vonage Dashboard](https://dashboard.nexmo.com/getting-started-guide). +| ApiSecret | Yes | The _API Secret_ associated with your Nexmo account. This is available to you via the [Vonage Dashboard](https://dashboard.nexmo.com/getting-started-guide). +| FromPhoneNo | Yes | This must be a _From Phone Number_ that has been provided to you from the Vonage website. | PhoneNo | **\*No** | A phone number MUST include the country codes dialling prefix as well when placed. This field is also very friendly and supports brackets, spaces and hyphens in the event you want to format the number in an easy to read fashion #### Example -Send a Nexmo Notification as an SMS: +Send a Vonage Notification as an SMS: ```bash # Assuming our {APIKey} is bc1451bd # Assuming our {APISecret} is gank339l7jk3cjaE @@ -36,10 +36,10 @@ Send a Nexmo Notification as an SMS: # Assuming our {PhoneNo} - is in the US somewhere making our country code +1 # - identifies as 800-555-1223 apprise -vv -t "Test Message Title" -b "Test Message Body" \ - nexmo://bc1451bd:gank339l7jk3cjaE@19005559999/18005551223 + vonage://bc1451bd:gank339l7jk3cjaE@19005559999/18005551223 # the following would also have worked (spaces, brackets, # dashes are accepted in a phone no field): apprise -vv -t "Test Message Title" -b "Test Message Body" \ - nexmo://bc1451bd:gank339l7jk3cjaE@1-(900) 555-9999/1-(800) 555-1223 + vonage://bc1451bd:gank339l7jk3cjaE@1-(900) 555-9999/1-(800) 555-1223 ``` \ No newline at end of file