From 9ee018698e9477bcb3b58d4999623c93269142e6 Mon Sep 17 00:00:00 2001 From: Suyash Joshi Date: Wed, 30 Jun 2021 23:25:38 -0700 Subject: [PATCH 1/2] Updated Java Code snippet for the latest SDK --- docs/messaging/sms/high-volume/sending-highvolume-sms.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/messaging/sms/high-volume/sending-highvolume-sms.md b/docs/messaging/sms/high-volume/sending-highvolume-sms.md index e6c8d3e3..ef0a5184 100755 --- a/docs/messaging/sms/high-volume/sending-highvolume-sms.md +++ b/docs/messaging/sms/high-volume/sending-highvolume-sms.md @@ -164,7 +164,7 @@ Simple request to broadcast the same message to multiple recipients m.to = new String[] {numbers[i]}; parameters.messages[i] = m; } - var resp = restClient.restapi().account().a2psms().batch().post(parameters); + var resp = rc.restapi().account().a2pSms().batch().post(parameters); String jsonStr = new Gson().toJson(resp, new TypeToken(){}.getType()); System.out.println(jsonStr); } @@ -404,7 +404,7 @@ Simple request to send customized messages to multiple recipients m.to = new String[] {numbers[i]}; parameters.messages[i] = m; } - var resp = restClient.restapi().account().a2psms().batch().post(parameters); + var resp = rc.restapi().account().a2pSms().batch(batchId).get(); String jsonStr = new Gson().toJson(resp, new TypeToken(){}.getType()); System.out.println(jsonStr); } @@ -551,7 +551,7 @@ Sending a large batch will take some time for the server to complete. You can re RestClient rc = new RestClient("client_id", "client_secret", "server_url"); rc.authorize("username", "extension_number", "password"); String batchId = "2157ac7d-baab-4d0e-1262-deada6c7xxxx"; - var resp = restClient.restapi().account().a2psms().batch(batchId).get(); + var resp = rc.restapi().account().a2pSms().batch(batchId).get(); String jsonStr = new Gson().toJson(resp, new TypeToken(){}.getType()); System.out.println(jsonStr); } From 6436b49bf7ea628796ebc4e2baf8ad2a96cfe427 Mon Sep 17 00:00:00 2001 From: Suyash Joshi Date: Wed, 30 Jun 2021 23:28:17 -0700 Subject: [PATCH 2/2] fixed java code snippet --- docs/messaging/sms/high-volume/sending-highvolume-sms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/messaging/sms/high-volume/sending-highvolume-sms.md b/docs/messaging/sms/high-volume/sending-highvolume-sms.md index ef0a5184..d3f30138 100755 --- a/docs/messaging/sms/high-volume/sending-highvolume-sms.md +++ b/docs/messaging/sms/high-volume/sending-highvolume-sms.md @@ -404,7 +404,7 @@ Simple request to send customized messages to multiple recipients m.to = new String[] {numbers[i]}; parameters.messages[i] = m; } - var resp = rc.restapi().account().a2pSms().batch(batchId).get(); + var resp = rc.restapi().account().a2pSms().batch().post(parameters); String jsonStr = new Gson().toJson(resp, new TypeToken(){}.getType()); System.out.println(jsonStr); }