Skip to content

Commit 954be45

Browse files
committed
Branding changes Nexmo to Vonage
1 parent afdc3fd commit 954be45

File tree

7 files changed

+10
-11
lines changed

7 files changed

+10
-11
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 Nexmo Community
3+
Copyright (c) 2020 Vonage Community
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This repository is a collection of cURL code snippets, demonstrating the functio
88

99
You will need [cURL](https://curl.haxx.se/) installed.
1010

11-
If you don't have a Vonage API account, you'll need to [create one](https://dashboard.nexmo.com/sign-up)!
11+
If you don't have a Vonage API account, you'll need to [create one](https://dashboard.nexmo.com/sign-up)!
1212

1313
## Configuration
1414

@@ -20,14 +20,13 @@ This repository contains a main configuration file `config.sh` that is reference
2020

2121
As each code snippet requires access to the configuration files, you must run them from the directory they reside in, for example:
2222

23-
```
23+
``` shell
2424
cd messaging/sms/
2525
./send-an-sms.sh
2626
```
2727

2828
## Get in touch
2929

30-
Questions and comments are welcome!
30+
Questions and comments are welcome!
3131

3232
You can create an issue on this repository. Patches are also very welcome, please go ahead and send us fixes or additional code snippets by opening a pull request.
33-

conversation/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ Depending on what other testing you have done on the `APP_ID` you might
7676
not have any Legs. The quickest way to create a Leg for testing
7777
purposes is as follows:
7878

79-
1. Link a Nexmo Number to the Nexmo Application you are using to test these scripts.
80-
2. Call that Nexmo number from your mobile phone. Let the call end.
79+
1. Link a Vonage number to the Vonage Application you are using to test these scripts.
80+
2. Call that Vonage number from your mobile phone. Let the call end.
8181

8282
Now that at least one leg has been created:
8383

messages/whatsapp/send-mtm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ curl -X POST $MESSAGES_API_URL \
2222
"name": "'$WHATSAPP_TEMPLATE_NAMESPACE':'$WHATSAPP_TEMPLATE_NAME'",
2323
"parameters":[
2424
{
25-
"default":"Nexmo Verification"
25+
"default":"Vonage Verification"
2626
},
2727
{
2828
"default":"64873"

messaging/sms/send-an-sms.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source "../../config.sh"
33

44
curl -X "POST" "https://rest.nexmo.com/sms/json" \
55
-d "from=$NEXMO_BRAND_NAME" \
6-
-d "text=A text message sent using the Nexmo SMS API" \
6+
-d "text=A text message sent using the Vonage SMS API" \
77
-d "to=$TO_NUMBER" \
88
-d "api_key=$NEXMO_API_KEY" \
99
-d "api_secret=$NEXMO_API_SECRET"

messaging/sms/send-signed-sms.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source "../../config.sh"
33

44
curl -X "POST" "https://rest.nexmo.com/sms/json" \
55
-d "from=$FROM_NUMBER" \
6-
-d "text=A text message sent using the Nexmo SMS API" \
6+
-d "text=A text message sent using the Vonage SMS API" \
77
-d "to=$TO_NUMBER" \
88
-d "api_key=$NEXMO_API_KEY" \
99
-d "sig=$NEXMO_SIGNATURE_SECRET"

voice/voice-api/make-an-outbound-call-with-ncco.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ curl -X POST https://api.nexmo.com/v1/calls\
1010
"ncco": [
1111
{
1212
"action": "talk",
13-
"text": "This is a text to speech call from Nexmo"
13+
"text": "This is a text to speech call from Vonage"
1414
}
1515
]}'

0 commit comments

Comments
 (0)