<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Error in SMS delivery in Discussion Forum</title>
    <link>https://community.sinch.com/t5/Discussion-Forum/Error-in-SMS-delivery/m-p/15300#M588</link>
    <description>&lt;P&gt;Hi Shahzad,&lt;/P&gt;&lt;P&gt;I have added this dependency of sinch java sdk&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;implementation &lt;SPAN&gt;'com.sinch.sdk:sinch-sdk-java:+'&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;Below is the sample code. I have added placeholders for actual values :&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;SinchClient client = &lt;SPAN&gt;new &lt;/SPAN&gt;SinchClient(Configuration.&lt;SPAN&gt;builder&lt;/SPAN&gt;()&lt;BR /&gt;        .setKeyId(&amp;lt;secret_key_id&amp;gt;)&lt;BR /&gt;        .setKeySecret(&amp;lt;secret_key&amp;gt;)&lt;BR /&gt;        .setProjectId(&amp;lt;project_id&amp;gt;)&lt;BR /&gt;        .setSmsRegion(SMSRegion.&lt;SPAN&gt;US&lt;/SPAN&gt;)&lt;BR /&gt;        .build());&lt;BR /&gt;&lt;BR /&gt;BatchText value =&lt;BR /&gt;        client.sms().batches().send(&lt;BR /&gt;                SendSmsBatchTextRequest.&lt;SPAN&gt;builder&lt;/SPAN&gt;()&lt;BR /&gt;                        .setTo(Collections.&lt;SPAN&gt;singletonList&lt;/SPAN&gt;(&amp;lt;us_number&amp;gt;))&lt;BR /&gt;                        .setBody(&lt;SPAN&gt;"This is a test SMS message using the Sinch Java SDK."&lt;/SPAN&gt;)&lt;BR /&gt;                        .setFrom(&amp;lt;no_allotted_by_sinch&amp;gt;)&lt;BR /&gt;                        .build());&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;Response&lt;/STRONG&gt;:&lt;BR /&gt;BatchText{flashMessage=false, parameters=null, truncateConcat=null, maxNumberOfMessageParts=null, fromTon=null, fromNpi=null} Batch{id='01HX6Q9FNS30AC672M6N7P0K9B', to=[&amp;lt;to_no&amp;gt;], from='447520662382', canceled=false, body=This is a test SMS message using the Sinch Java SDK., createdAt=2024-05-06T10:30:47.736Z, modifiedAt=2024-05-06T10:30:47.736Z, deliveryReportType=none, sendAt=null, expireAt=2024-05-09T10:30:47.737Z, callbackUrl='null', clientReference='null', feedbackEnabled=null}&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 May 2024 06:00:50 GMT</pubDate>
    <dc:creator>shweta_paigude</dc:creator>
    <dc:date>2024-05-07T06:00:50Z</dc:date>
    <item>
      <title>Error in SMS delivery</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-in-SMS-delivery/m-p/15275#M586</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm currently new to Sinch and currently in the process of evaluating it (in test mode) for fulfilling my SMS requirements.&lt;/P&gt;&lt;P&gt;I'm utilizing the Java SDK to send SMS messages to various numbers worldwide. I've successfully sent SMS messages to numbers in South Korea, Germany, and India. However, when attempting to send messages to US numbers, I encountered the following error in the Message Search section of the portal:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Status&lt;/STRONG&gt;: Error code 61, Permanent&lt;BR /&gt;&lt;STRONG&gt;Description&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;Destination blocked&lt;/P&gt;&lt;P&gt;Account not permitted to reach the destination MSISDN&lt;BR /&gt;&lt;BR /&gt;Please let me know for US numbers anything else needs to be done.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shweta paigude&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 10:16:08 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-in-SMS-delivery/m-p/15275#M586</guid>
      <dc:creator>shweta_paigude</dc:creator>
      <dc:date>2024-05-06T10:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Error in SMS delivery</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-in-SMS-delivery/m-p/15291#M587</link>
      <description>Hi Shweta,&lt;BR /&gt;Can you please provide some more information about which Java SDK you are using?&lt;BR /&gt; &lt;BR /&gt;Can you please send us a code sample you are using to send SMS and the Full payload response if possible.&lt;BR /&gt;&lt;BR /&gt;Thanks and kind regards,</description>
      <pubDate>Mon, 06 May 2024 17:25:46 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-in-SMS-delivery/m-p/15291#M587</guid>
      <dc:creator>Shahzad_Ismail</dc:creator>
      <dc:date>2024-05-06T17:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error in SMS delivery</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-in-SMS-delivery/m-p/15300#M588</link>
      <description>&lt;P&gt;Hi Shahzad,&lt;/P&gt;&lt;P&gt;I have added this dependency of sinch java sdk&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;implementation &lt;SPAN&gt;'com.sinch.sdk:sinch-sdk-java:+'&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;Below is the sample code. I have added placeholders for actual values :&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;SinchClient client = &lt;SPAN&gt;new &lt;/SPAN&gt;SinchClient(Configuration.&lt;SPAN&gt;builder&lt;/SPAN&gt;()&lt;BR /&gt;        .setKeyId(&amp;lt;secret_key_id&amp;gt;)&lt;BR /&gt;        .setKeySecret(&amp;lt;secret_key&amp;gt;)&lt;BR /&gt;        .setProjectId(&amp;lt;project_id&amp;gt;)&lt;BR /&gt;        .setSmsRegion(SMSRegion.&lt;SPAN&gt;US&lt;/SPAN&gt;)&lt;BR /&gt;        .build());&lt;BR /&gt;&lt;BR /&gt;BatchText value =&lt;BR /&gt;        client.sms().batches().send(&lt;BR /&gt;                SendSmsBatchTextRequest.&lt;SPAN&gt;builder&lt;/SPAN&gt;()&lt;BR /&gt;                        .setTo(Collections.&lt;SPAN&gt;singletonList&lt;/SPAN&gt;(&amp;lt;us_number&amp;gt;))&lt;BR /&gt;                        .setBody(&lt;SPAN&gt;"This is a test SMS message using the Sinch Java SDK."&lt;/SPAN&gt;)&lt;BR /&gt;                        .setFrom(&amp;lt;no_allotted_by_sinch&amp;gt;)&lt;BR /&gt;                        .build());&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;Response&lt;/STRONG&gt;:&lt;BR /&gt;BatchText{flashMessage=false, parameters=null, truncateConcat=null, maxNumberOfMessageParts=null, fromTon=null, fromNpi=null} Batch{id='01HX6Q9FNS30AC672M6N7P0K9B', to=[&amp;lt;to_no&amp;gt;], from='447520662382', canceled=false, body=This is a test SMS message using the Sinch Java SDK., createdAt=2024-05-06T10:30:47.736Z, modifiedAt=2024-05-06T10:30:47.736Z, deliveryReportType=none, sendAt=null, expireAt=2024-05-09T10:30:47.737Z, callbackUrl='null', clientReference='null', feedbackEnabled=null}&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 06:00:50 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-in-SMS-delivery/m-p/15300#M588</guid>
      <dc:creator>shweta_paigude</dc:creator>
      <dc:date>2024-05-07T06:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error in SMS delivery</title>
      <link>https://community.sinch.com/t5/Discussion-Forum/Error-in-SMS-delivery/m-p/15302#M589</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Shweta,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For this issue to be looked into properly we recommend that you&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.sinch.com/t5/General-Support/Sinch-Customer-Support-Process/m-p/7408#M2" target="_self"&gt;raise a support ticket&lt;/A&gt;&lt;SPAN&gt;. The linked article provides comprehensive instructions on how to create a support ticket.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Just a point to note if you are trying to send a message to the USA then you need a 10DLC number to send the message from. For more information about this refer to our &lt;A href="https://community.sinch.com/t5/10DLC/tkb-p/10DLC" target="_self"&gt;10DLC knowledgebase&lt;/A&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks and kind regards,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 09:15:47 GMT</pubDate>
      <guid>https://community.sinch.com/t5/Discussion-Forum/Error-in-SMS-delivery/m-p/15302#M589</guid>
      <dc:creator>Shahzad_Ismail</dc:creator>
      <dc:date>2024-05-07T09:15:47Z</dc:date>
    </item>
  </channel>
</rss>

