You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -111,245 +111,22 @@ In general, response contents are the same for all actions and contain the succe
111
111
]
112
112
}
113
113
```
114
-
## Sample code to use Opt-Out API
114
+
## Next steps
115
115
116
-
### C#
116
+
In this quickstart, you learned how to send OPt-out requests.
117
117
118
-
#### Prerequisites
118
+
> [!div class="nextstepaction"]
119
+
> [Send an SMS message](./send.md)
119
120
120
-
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
121
-
- The .NET Core SDK version must be higher than v6 for your operating system.
122
-
- An active Communication Services resource and connection string. See [Create a Communication Services resource](https://learn.microsoft.com/azure/communication-services/quickstarts/create-communication-resource).
123
-
- An SMS-enabled telephone number. See [Get a phone number](https://learn.microsoft.com/azure/communication-services/quickstarts/telephony/get-phone-number) and `allowlisted` as described in the beginning of the article.
from="+15551234567", //replace with your allowed sender number
192
-
recipients=new[] {
193
-
new { to="+15550112233" } //replace with your recipient
194
-
},
195
-
});
196
-
197
-
awaitSendOptOutAdd(ConnectionString, payload);
198
-
199
-
```
200
-
### JavaScript
201
-
202
-
#### Prerequisites
203
-
204
-
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
205
-
- Browser or Node.js Active LTS and Maintenance LTS versions (8.11.1 and 10.14.1 are recommended).
206
-
- An active Communication Services resource and connection string. See [Create a Communication Services resource](https://learn.microsoft.com/azure/communication-services/quickstarts/create-communication-resource).
207
-
- An SMS-enabled telephone number. See [Get a phone number](https://learn.microsoft.com/azure/communication-services/quickstarts/telephony/get-phone-number).
208
-
-[CryptoJS](https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/crypto-js/CryptoJS%20v3.1.2.zip) is JavaScript implementations of standard and secure cryptographic algorithms.
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
287
-
- Java Development Kit (JDK) version 8 or above.
288
-
- An active Communication Services resource and connection string. See [Create a Communication Services resource](https://learn.microsoft.com/azure/communication-services/quickstarts/create-communication-resource).
289
-
- An SMS-enabled telephone number. See [Get a phone number](https://learn.microsoft.com/azure/communication-services/quickstarts/telephony/get-phone-number).
290
-
291
-
292
-
```java
293
-
// Sample for Add action. Replace with Check or Remove as necessary.
0 commit comments