<br />
<b>Deprecated</b>:  Creation of dynamic property Yoast\WP\SEO\Premium\Generated\Cached_Container::$normalizedIds is deprecated in <b>G:\PleskVhosts\click2call.co.in\msgclub.net\blog\wp-content\plugins\wordpress-seo-premium\src\generated\container.php</b> on line <b>27</b><br />
<br />
<b>Notice</b>:  Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>updraftplus</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in <b>G:\PleskVhosts\click2call.co.in\msgclub.net\blog\wp-includes\functions.php</b> on line <b>6131</b><br />
{"id":579,"date":"2018-10-29T13:53:00","date_gmt":"2018-10-29T08:23:00","guid":{"rendered":"http:\/\/www.msgclub.net\/blog\/?p=579"},"modified":"2024-05-24T16:10:38","modified_gmt":"2024-05-24T10:40:38","slug":"sms-api-vb-6-0-get-api-codes-and-parameters","status":"publish","type":"post","link":"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/","title":{"rendered":"SMS API VB 6.0 (GET API) codes and parameters"},"content":{"rendered":"\n<p>To make your task easier. We provide you <strong>Bulk SMS API<\/strong> with Sample code of <strong><a href=\"http:\/\/www.msgclub.net\/sms-api\/vb6-api.aspx\">SMS API VB 6.0<\/a><\/strong> so that, you do not need to develop the API and source code and with this, you can directly integrate our ready to use\u00a0Bulk SMS API\u00a0and Source Code in your software (developed in VB 6.0 language). \u00a0\u00a0\u00a0<\/p>\n\n\n\n<p>These codes will help a developer to understand and implement <strong>SMS gateway API <\/strong>into their own software, Windows or Web application. Whether your Software serves the purpose of Customer relationship management (CRM), Billing, accounting, Reports \/content management, HR management, Marketing, Order management, Product life cycle (PLC) management, warehouse management or any other. The developed API and ready-made scripts in VB 6.0 by the technical team of Msgclub are making API Integration easy.<\/p>\n\n\n\n<p>Sample code of <strong><a href=\"http:\/\/www.msgclub.net\/sms-api\/vb6-api.aspx\">SMS API VB 6.0<\/a><\/strong><a href=\"https:\/\/web.archive.org\/web\/20200131130759\/http:\/\/www.msgclub.net\/sms-service\/bulk_sms_api.aspx\"> <\/a>is mentioned below ( GET API)-<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Private Sub Command1_Click()\r\n Dim authKey, URL, mobiles, senderId, smsContentType, message, groupId, signature, routeId As String\r\n    Dim V_signature, V_groupId, scheduleddate, V_scheduleddate As String\r\n    Dim objXML As Object\r\n    Dim getDataString As String\r\n    \r\n    authKey = \"Sample Auth key\" 'eg -- 16 digits alphanumeric\r\n    URL = \"Sample\"  'eg-- www.abc.com\r\n    mobiles = \"Sample\" '99999999xx,99999998xx\r\n    smsContentType = \"english\" 'eg - english or unicode  \r\n    message = \"Hello this is test\"\r\n    senderId = \"Sample\" 'eg -- Testin'\r\n    routeId = \u00e2\u20ac\u0153Sample\" 'eg 1'\r\n scheduleddate = \"\" \u00e2\u20ac\u02dcoptional if(scheduledate  eg \u00e2\u20ac\u015326\/08\/2015 17:00\u00e2\u20ac\u009d)\r\n signature =\"\" \u00e2\u20ac\u02dcoptional if(signature available  eg \u00e2\u20ac\u01531\u00e2\u20ac\u009d)\r\n groupId =\"\" \u00e2\u20ac\u02dcoptional if(groupId available eg \u00e2\u20ac\u01531\u00e2\u20ac\u009d)\r\n    If (Len(signature) > 0) Then\r\n        V_signature = \"&amp;signature=\" &amp; signature\r\n    End If\r\n    If (Len(groupId) > 0) Then\r\n        V_groupId = \"&amp;groupId=\" &amp; groupId\r\n    End If\r\n    If (Len(scheduleddate) > 0) Then\r\n        V_scheduleddate = \"&amp;scheduleddate=\" &amp; scheduleddate\r\n    End If\r\n    URL = \"Sample\"\r\n    'use for API Reference\r\n    Set objXML = CreateObject(\"Microsoft.XMLHTTP\")\r\n    'creating data for url\r\n    getDataString = URL + \"AUTH_KEY=\" + authKey + \"&amp;smsContent=\" + message + \"&amp;mobileNos=\" + mobiles + \"&amp;senderId=\" + senderId + \"&amp;routeId=\" + routeId + \"&amp;smsContentType=\" + smsContentType + V_scheduleddate + V_groupId + V_signature\r\n    objXML.Open \"GET\", getDataString, False\r\n    objXML.Send\r\n     If Len(objXML.ResponseText) > 0 Then\r\n            MsgBox objXML.ResponseText\r\n     End If\r\nEnd Sub\r\nFunction URLEncode(ByVal Text As String) As String\r\n    Dim i As Integer\r\n    Dim acode As Integer\r\n    Dim char As String\r\n    \r\n    URLEncode = Text\r\n    \r\n    For i = Len(URLEncode) To 1 Step -1\r\n        acode = Asc(Mid$(URLEncode, i, 1))\r\n        Select Case acode\r\n            Case 48 To 57, 65 To 90, 97 To 122\r\n                ' don't touch alphanumeric chars\r\n            Case 32\r\n                ' replace space with \"+\"\r\n                Mid$(URLEncode, i, 1) = \"+\"\r\n            Case Else\r\n                ' replace punctuation chars with \"%hex\"\r\n                URLEncode = Left$(URLEncode, i - 1) &amp; \"%\" &amp; Hex$(acode) &amp; Mid$ _\r\n                    (URLEncode, i + 1)\r\n        End Select\r\n    Next\r\n    \r\nEnd Function<\/code><\/pre>\n\n\n\n<p><strong>Parameter Name with Description<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Parameter Name <\/strong><strong><\/strong><strong> <\/strong><strong><\/strong><strong> <\/strong><strong><\/strong><strong><\/strong><\/td><td><strong>Data Type <\/strong><strong><\/strong><strong> <\/strong><strong><\/strong><strong> <\/strong><strong><\/strong><strong><\/strong><\/td><td><strong>Description <\/strong><strong><\/strong><strong> <\/strong><strong><\/strong><strong> <\/strong><strong><\/strong><\/td><\/tr><tr><td>AUTH_KEY *<\/td><td>Alphanumeric<\/td><td>Login Authentication Key(This key is unique for every user)<\/td><\/tr><tr><td>message *<\/td><td>Text<\/td><td>Enter your message<\/td><\/tr><tr><td>Sender Id *<\/td><td>Text<\/td><td>Enter sender Id it should be less then 6 character<\/td><\/tr><tr><td>routeId *<\/td><td>Integer<\/td><td>Which route you want use for sending sms enter routeId for particular route.use given Id for route. Transactional Route=1, Promotional=2, Promotional Sender Id=3<\/td><\/tr><tr><td>mobileNos *<\/td><td>Integer<\/td><td>Mobile number can be entered with country code or without country code Multiple mobile no. should be separated by comma<\/td><\/tr><tr><td>groupId *<\/td><td>Integer<\/td><td>To send sms to particular group enter group name created in MsgClub phone book.<\/td><\/tr><tr><td>SMS ContentType*<\/td><td>Text<\/td><td>&#8220;English&#8221; for text sms and &#8220;Unicode&#8221; for Unicode sms<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Parameters with (*) are mandatory.<\/p>\n\n\n\n<p>Start using <strong>Msgclub mobile messaging software<\/strong> for <strong>bulk SMS API VB 6.0<\/strong> as your preferred communication and marketing method.<\/p>\n\n\n\n<p><br>Easily integrable <strong>Bulk SMS VB 6.0 (GET API) API and its source code <\/strong>are here. For more details, you can<a href=\"http:\/\/www.msgclub.net\/contact_us.aspx\"> contact us<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To make your task easier. We provide you Bulk SMS API with Sample code of SMS API VB 6.0 so that, you do not need to develop the API and source code and with this, you can directly integrate our ready to use\u00a0Bulk SMS API\u00a0and Source Code in your software (developed in VB 6.0 language). &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"SMS API VB 6.0 (GET API) codes and parameters\" class=\"read-more button\" href=\"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/#more-579\" aria-label=\"Read more about SMS API VB 6.0 (GET API) codes and parameters\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[399],"tags":[13,6,42,169,175,184,226,7,179,10,27,15],"class_list":["post-579","post","type-post","status-publish","format-standard","hentry","category-bulk-sms-api","tag-api-integration","tag-bulk-sms","tag-bulk-sms-api","tag-bulk-sms-reseller-in-india","tag-bulk-sms-service-provider","tag-get-balance-api","tag-schedule-sms-api","tag-send-sms","tag-send-sms-api","tag-sending-sms-2","tag-sms-marketing","tag-sms-services","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.2.1 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\r\n<title>SMS API VB 6.0 (GET API) codes and parameters - MSGCLUB Blog<\/title>\r\n<meta name=\"description\" content=\"This is a basic and simple method of sending SMS messages from an application or software which passing all the parameters in the same url.\" \/>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"SMS API VB 6.0 (GET API) codes and parameters\" \/>\r\n<meta property=\"og:description\" content=\"This is a basic and simple method of sending SMS messages from an application or software which passing all the parameters in the same url.\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/\" \/>\r\n<meta property=\"og:site_name\" content=\"MSGCLUB Blog\" \/>\r\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/msgclubdotnet\/\" \/>\r\n<meta property=\"article:published_time\" content=\"2018-10-29T08:23:00+00:00\" \/>\r\n<meta property=\"article:modified_time\" content=\"2024-05-24T10:40:38+00:00\" \/>\r\n<meta name=\"author\" content=\"MSGCLUB Team\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:creator\" content=\"@MSGCLUB\" \/>\r\n<meta name=\"twitter:site\" content=\"@MSGCLUB\" \/>\r\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"MSGCLUB Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/sms-api-vb-6-0-get-api-codes-and-parameters\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/sms-api-vb-6-0-get-api-codes-and-parameters\\\/\"},\"author\":{\"name\":\"MSGCLUB Team\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#\\\/schema\\\/person\\\/bf3b82b3f61b1dc1487a1206b8ad8775\"},\"headline\":\"SMS API VB 6.0 (GET API) codes and parameters\",\"datePublished\":\"2018-10-29T08:23:00+00:00\",\"dateModified\":\"2024-05-24T10:40:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/sms-api-vb-6-0-get-api-codes-and-parameters\\\/\"},\"wordCount\":304,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#organization\"},\"keywords\":[\"API Integration\",\"Bulk SMS\",\"Bulk SMS API\",\"Bulk SMS Reseller in India\",\"Bulk SMS service provider\",\"Get balance API\",\"Schedule SMS API\",\"Send SMS\",\"Send SMS API\",\"Sending SMS\",\"SMS Marketing\",\"SMS services\"],\"articleSection\":[\"Bulk SMS API\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/sms-api-vb-6-0-get-api-codes-and-parameters\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/sms-api-vb-6-0-get-api-codes-and-parameters\\\/\",\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/sms-api-vb-6-0-get-api-codes-and-parameters\\\/\",\"name\":\"SMS API VB 6.0 (GET API) codes and parameters - MSGCLUB Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#website\"},\"datePublished\":\"2018-10-29T08:23:00+00:00\",\"dateModified\":\"2024-05-24T10:40:38+00:00\",\"description\":\"This is a basic and simple method of sending SMS messages from an application or software which passing all the parameters in the same url.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/sms-api-vb-6-0-get-api-codes-and-parameters\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/sms-api-vb-6-0-get-api-codes-and-parameters\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/sms-api-vb-6-0-get-api-codes-and-parameters\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SMS API VB 6.0 (GET API) codes and parameters\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/\",\"name\":\"msgclub.net\",\"description\":\"One Stop Bulk Communication Services \",\"publisher\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#organization\",\"name\":\"MSGCLUB\",\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/msglogo-1.png\",\"contentUrl\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/msglogo-1.png\",\"width\":200,\"height\":90,\"caption\":\"MSGCLUB\"},\"image\":{\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/msgclubdotnet\\\/\",\"https:\\\/\\\/x.com\\\/MSGCLUB\",\"https:\\\/\\\/in.linkedin.com\\\/company\\\/msgclub-net---india\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/#\\\/schema\\\/person\\\/bf3b82b3f61b1dc1487a1206b8ad8775\",\"name\":\"MSGCLUB Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g\",\"caption\":\"MSGCLUB Team\"},\"url\":\"https:\\\/\\\/www.msgclub.net\\\/blog\\\/author\\\/msgclub_1212\\\/\"}]}<\/script>\r\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SMS API VB 6.0 (GET API) codes and parameters - MSGCLUB Blog","description":"This is a basic and simple method of sending SMS messages from an application or software which passing all the parameters in the same url.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/","og_locale":"en_US","og_type":"article","og_title":"SMS API VB 6.0 (GET API) codes and parameters","og_description":"This is a basic and simple method of sending SMS messages from an application or software which passing all the parameters in the same url.","og_url":"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/","og_site_name":"MSGCLUB Blog","article_publisher":"https:\/\/www.facebook.com\/msgclubdotnet\/","article_published_time":"2018-10-29T08:23:00+00:00","article_modified_time":"2024-05-24T10:40:38+00:00","author":"MSGCLUB Team","twitter_card":"summary_large_image","twitter_creator":"@MSGCLUB","twitter_site":"@MSGCLUB","twitter_misc":{"Written by":"MSGCLUB Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/#article","isPartOf":{"@id":"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/"},"author":{"name":"MSGCLUB Team","@id":"https:\/\/www.msgclub.net\/blog\/#\/schema\/person\/bf3b82b3f61b1dc1487a1206b8ad8775"},"headline":"SMS API VB 6.0 (GET API) codes and parameters","datePublished":"2018-10-29T08:23:00+00:00","dateModified":"2024-05-24T10:40:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/"},"wordCount":304,"commentCount":0,"publisher":{"@id":"https:\/\/www.msgclub.net\/blog\/#organization"},"keywords":["API Integration","Bulk SMS","Bulk SMS API","Bulk SMS Reseller in India","Bulk SMS service provider","Get balance API","Schedule SMS API","Send SMS","Send SMS API","Sending SMS","SMS Marketing","SMS services"],"articleSection":["Bulk SMS API"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/","url":"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/","name":"SMS API VB 6.0 (GET API) codes and parameters - MSGCLUB Blog","isPartOf":{"@id":"https:\/\/www.msgclub.net\/blog\/#website"},"datePublished":"2018-10-29T08:23:00+00:00","dateModified":"2024-05-24T10:40:38+00:00","description":"This is a basic and simple method of sending SMS messages from an application or software which passing all the parameters in the same url.","breadcrumb":{"@id":"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.msgclub.net\/blog\/sms-api-vb-6-0-get-api-codes-and-parameters\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.msgclub.net\/blog\/"},{"@type":"ListItem","position":2,"name":"SMS API VB 6.0 (GET API) codes and parameters"}]},{"@type":"WebSite","@id":"https:\/\/www.msgclub.net\/blog\/#website","url":"https:\/\/www.msgclub.net\/blog\/","name":"msgclub.net","description":"One Stop Bulk Communication Services ","publisher":{"@id":"https:\/\/www.msgclub.net\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.msgclub.net\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.msgclub.net\/blog\/#organization","name":"MSGCLUB","url":"https:\/\/www.msgclub.net\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.msgclub.net\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2024\/05\/msglogo-1.png","contentUrl":"https:\/\/www.msgclub.net\/blog\/wp-content\/uploads\/2024\/05\/msglogo-1.png","width":200,"height":90,"caption":"MSGCLUB"},"image":{"@id":"https:\/\/www.msgclub.net\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/msgclubdotnet\/","https:\/\/x.com\/MSGCLUB","https:\/\/in.linkedin.com\/company\/msgclub-net---india"]},{"@type":"Person","@id":"https:\/\/www.msgclub.net\/blog\/#\/schema\/person\/bf3b82b3f61b1dc1487a1206b8ad8775","name":"MSGCLUB Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5d3ac483ecbecca27535a356900972d69a406a4a41baf31466c3be212608a6f7?s=96&d=mm&r=g","caption":"MSGCLUB Team"},"url":"https:\/\/www.msgclub.net\/blog\/author\/msgclub_1212\/"}]}},"_links":{"self":[{"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/posts\/579","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/comments?post=579"}],"version-history":[{"count":1,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/posts\/579\/revisions"}],"predecessor-version":[{"id":580,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/posts\/579\/revisions\/580"}],"wp:attachment":[{"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/media?parent=579"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/categories?post=579"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.msgclub.net\/blog\/wp-json\/wp\/v2\/tags?post=579"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}