{"id":17130,"date":"2026-07-27T12:33:49","date_gmt":"2026-07-27T07:03:49","guid":{"rendered":"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/"},"modified":"2026-07-27T12:33:49","modified_gmt":"2026-07-27T07:03:49","slug":"whatsapp-chatbot-api","status":"publish","type":"post","link":"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/","title":{"rendered":"WhatsApp Chatbot API: Build Your Own Bot with Webhooks and Session Messages"},"content":{"rendered":"<p>A chatbot is not magic. It is a loop: a customer&#8217;s message triggers a webhook to your server, your code decides the answer, and an API call sends the reply into the same chat. If you can receive an HTTP request and send one back, you can build a bot. This guide shows the whole loop on Fast2SMS with the WhatsApp chatbot API pattern, plus how the same webhooks automate DLT SMS, bulk SMS and RCS flows.<\/p>\n<p>Want a bot without writing code? The drag-and-drop <a href=\"https:\/\/www.fast2sms.com\/help\/free-whatsapp-chatbot\/\">free WhatsApp chatbot builder<\/a> does that. This article is for developers who want full control.<\/p>\n<h2>The loop, in one picture<\/h2>\n<figure style=\"margin:36px 0;text-align:center;\">\n  <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.fast2sms.com\/help\/wp-content\/uploads\/2026\/07\/chatbot-loop.png\" alt=\"Chatbot loop diagram: customer message triggers webhook, your code decides, session message API replies\" width=\"1600\" height=\"900\" style=\"max-width:100%;height:auto;border:1px solid #e5e7eb;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,0.06);\" \/><figcaption style=\"font-size:14px;color:#6b7280;margin-top:12px;font-style:italic;\">Webhook in, your logic in the middle, session message API out. That is a chatbot.<\/figcaption><\/figure>\n<h2>What you need<\/h2>\n<ul>\n<li>A free <a href=\"https:\/\/www.fast2sms.com\" target=\"_blank\" rel=\"noopener\">Fast2SMS account<\/a> with your API key.<\/li>\n<li>A connected WhatsApp Business number (free, <a href=\"https:\/\/www.fast2sms.com\/help\/whatsapp-business-api-wordpress\/\">no monthly fee<\/a>).<\/li>\n<li>A public HTTPS endpoint on your server. New to webhooks? Read <a href=\"https:\/\/www.fast2sms.com\/help\/how-webhooks-work\/\">how webhooks work<\/a> first; it covers setup, retries, testing and security.<\/li>\n<\/ul>\n<h2>Step 1: Catch incoming messages with a webhook<\/h2>\n<p>In your dashboard&#8217;s Webhooks section, create a WhatsApp webhook with the event set to received (or All). Give it a payload template with the inbound fields:<\/p>\n<pre style=\"background:#1f2937;color:#e5e7eb;padding:16px;border-radius:8px;overflow-x:auto;font-size:14px;\"><code>{\n  \"webhook_type\": \"{{webhook_type}}\",\n  \"from\": \"{{from}}\",\n  \"message_type\": \"{{message_type}}\",\n  \"body\": \"{{body}}\",\n  \"message_id\": \"{{message_id}}\",\n  \"phone_number_id\": \"{{phone_number_id}}\"\n}<\/code><\/pre>\n<p>When a customer writes to your number, your endpoint receives:<\/p>\n<pre style=\"background:#1f2937;color:#e5e7eb;padding:16px;border-radius:8px;overflow-x:auto;font-size:14px;\"><code>{\n  \"webhook_type\": \"incoming_message\",\n  \"from\": \"919999999999\",\n  \"message_type\": \"text\",\n  \"body\": \"Where is my order?\",\n  \"message_id\": \"wamid.HBgMOTE5...\",\n  \"phone_number_id\": \"1122334455\"\n}<\/code><\/pre>\n<h2>Step 2: Reply with the session message API<\/h2>\n<p>Because the customer messaged you, a conversation window is open, and you can answer free-form with a <strong>session message<\/strong>: no template approval needed for the reply. One POST does it:<\/p>\n<pre style=\"background:#1f2937;color:#e5e7eb;padding:16px;border-radius:8px;overflow-x:auto;font-size:14px;\"><code>curl -X POST \"https:\/\/www.fast2sms.com\/dev\/whatsapp-session?phone_number_id=1122334455&amp;to=919999999999\" \\\n  -H \"Authorization: YOUR_API_KEY\" \\\n  -H \"Content-Type: application\/json\" \\\n  -d '{ \"type\": \"text\", \"text\": \"Your order ORD4821 is out for delivery today!\" }'\n\n{ \"status\": \"success\" }<\/code><\/pre>\n<p>Session messages support eight types: text, image, document, audio, video, location, sticker and reaction, so your bot can answer with an invoice PDF or a location pin, not just words. Full reference: <a href=\"https:\/\/docs.fast2sms.com\/reference\/sendsessionmessage\" target=\"_blank\" rel=\"noopener\">session message API docs<\/a>.<\/p>\n<p>One distinction to keep straight: session messages are <strong>replies inside an open conversation<\/strong>. To message someone who has not written to you first, use an approved template through the <a href=\"https:\/\/www.fast2sms.com\/help\/whatsapp-message-api\/\">WhatsApp message API<\/a>.<\/p>\n<h2>Step 3: Put your logic in the middle<\/h2>\n<p>Here is a complete minimal bot in PHP: it reads the webhook, routes on keywords, and replies in the same chat:<\/p>\n<pre style=\"background:#1f2937;color:#e5e7eb;padding:16px;border-radius:8px;overflow-x:auto;font-size:14px;\"><code>&lt;?php\n\/\/ https:\/\/yourdomain.com\/whatsapp-bot.php\n$event = json_decode(file_get_contents('php:\/\/input'), true);\n\nif (($event['webhook_type'] ?? '') === 'incoming_message') {\n    $from = $event['from'];\n    $text = strtolower($event['body'] ?? '');\n\n    if (str_contains($text, 'order')) {\n        $reply = 'Please share your order ID and we will check it right away.';\n    } elseif (str_contains($text, 'price')) {\n        $reply = 'Our latest price list: https:\/\/yourbrand.com\/prices';\n    } else {\n        $reply = 'Hi! Type ORDER for order status or PRICE for our price list.';\n    }\n\n    $ch = curl_init('https:\/\/www.fast2sms.com\/dev\/whatsapp-session'\n        . '?phone_number_id=' . $event['phone_number_id']\n        . '&amp;to=' . $from);\n    curl_setopt_array($ch, array(\n        CURLOPT_RETURNTRANSFER =&gt; true,\n        CURLOPT_POST           =&gt; true,\n        CURLOPT_HTTPHEADER     =&gt; array(\n            'Authorization: YOUR_API_KEY',\n            'Content-Type: application\/json',\n        ),\n        CURLOPT_POSTFIELDS     =&gt; json_encode(array(\n            'type' =&gt; 'text',\n            'text' =&gt; $reply,\n        )),\n    ));\n    curl_exec($ch);\n    curl_close($ch);\n}\n\nhttp_response_code(200);\necho 'OK';<\/code><\/pre>\n<p>That is a working chatbot in about thirty lines. From here you grow it: look up real orders in your database, hand off to a human when the customer types AGENT, or plug the text into an AI model and let it draft replies.<\/p>\n<h2>The same pattern on RCS<\/h2>\n<p>RCS webhooks emit the same incoming_message events when customers reply to your RCS campaigns, with from, body and message_type fields. Catch them on an RCS webhook and respond through your RCS sending flow; rich cards and buttons make the bot feel app-like inside the default SMS app. Background: <a href=\"https:\/\/www.fast2sms.com\/help\/rcs-message-reseller\/\">RCS messaging<\/a> and <a href=\"https:\/\/www.fast2sms.com\/help\/how-to-create-rcs-bot-for-business-messaging\/\">creating an RCS bot<\/a>.<\/p>\n<h2>What SMS webhooks automate (no inbound, still powerful)<\/h2>\n<p>DLT SMS and bulk SMS have no customer replies, so no chat loop, but their delivered and failed events drive serious automation:<\/p>\n<ul>\n<li><strong>Failure-triggered fallback:<\/strong> an OTP or alert reports failed, your code immediately resends on WhatsApp, or lets <a href=\"https:\/\/www.fast2sms.com\/help\/otp-sms-smart-otp\/\">Smart OTP<\/a> handle the switch automatically.<\/li>\n<li><strong>List hygiene:<\/strong> numbers that consistently fail get flagged in your database, so <a href=\"https:\/\/www.fast2sms.com\/help\/bulk-sms-api-india\/\">bulk SMS campaigns<\/a> stop paying for dead numbers.<\/li>\n<li><strong>Live campaign dashboards:<\/strong> delivered counts and per-message cost (amount_debited) stream into your own reporting as each event lands.<\/li>\n<li><strong>Order flow sync:<\/strong> mark the order timeline &#8220;SMS delivered&#8221; the moment the DLT report arrives, using udf1 to carry your order ID through the loop.<\/li>\n<\/ul>\n<p>Every payload and placeholder for these events is documented with full samples in <a href=\"https:\/\/www.fast2sms.com\/help\/how-webhooks-work\/\">how webhooks work<\/a>.<\/p>\n<h2>Bot ideas worth stealing<\/h2>\n<ul>\n<li><strong>Order status bot:<\/strong> customer sends an order ID, your code queries the database and replies with live status.<\/li>\n<li><strong>Support triage:<\/strong> keyword menu first, human handoff on request, ticket created via your helpdesk API.<\/li>\n<li><strong>Lead qualifier:<\/strong> three questions, answers saved to your CRM, hot leads pinged to sales on their own WhatsApp.<\/li>\n<li><strong>Feedback collector:<\/strong> after the delivered webhook fires for an order SMS, wait a day and ask for a rating.<\/li>\n<\/ul>\n<h2>Frequently asked questions<\/h2>\n<h3>Do I need template approval for bot replies?<\/h3>\n<p>No. Replies to an incoming customer message go as session messages, free-form, in eight content types. Templates are only for starting conversations.<\/p>\n<h3>Which channels can run a two-way bot?<\/h3>\n<p>WhatsApp and RCS, since both deliver incoming replies to your webhook. SMS is one-way in India, so SMS webhooks power delivery-driven automation instead.<\/p>\n<h3>What does the session message API cost?<\/h3>\n<p>Session messages are billed per WhatsApp conversation rules to your own wallet, with no monthly platform fee. Delivery-basis billing and auto refunds apply as usual.<\/p>\n<h3>How fast does the loop run?<\/h3>\n<p>Incoming messages reach your webhook near real-time, and your session reply sends immediately, so a well-hosted bot answers within seconds.<\/p>\n<h3>Can I connect an AI model?<\/h3>\n<p>Yes. Your code sits in the middle of the loop, so passing the body to any AI API and sending its answer back as the session message is exactly the same pattern.<\/p>\n<h3>How do I keep the endpoint secure?<\/h3>\n<p>Enable webhook signing and verify the webhook_secret_key header, use HTTPS, and de-duplicate events. All covered in <a href=\"https:\/\/www.fast2sms.com\/help\/how-webhooks-work\/\">the webhooks guide<\/a>.<\/p>\n<h3>Is there a no-code alternative?<\/h3>\n<p>Yes, the <a href=\"https:\/\/www.fast2sms.com\/help\/free-whatsapp-chatbot\/\">free drag-and-drop chatbot builder<\/a> in your Fast2SMS panel, including an API-request block that can call your systems mid-flow.<\/p>\n<h2>Build your first loop today<\/h2>\n<p>Create your free account, connect your WhatsApp number, add one webhook and one endpoint, and your bot answers its first customer this afternoon.<\/p>\n<p style=\"text-align:center;margin:28px 0;\">\n  <a href=\"https:\/\/www.fast2sms.com\" target=\"_blank\" rel=\"noopener\" style=\"display:inline-block;background:#e63329;color:#ffffff;font-size:20px;font-weight:700;padding:16px 52px;border-radius:40px;text-decoration:none;box-shadow:0 3px 8px rgba(0,0,0,0.22);\">Signup Now<\/a>\n<\/p>\n<p>Questions? Write to <a href=\"mailto:support@fast2sms.com\">support@fast2sms.com<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The developer way to build a WhatsApp bot: incoming message webhooks, your code in the middle, session message replies. Working PHP example included.<\/p>\n","protected":false},"author":11,"featured_media":17128,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"WhatsApp chatbot API","_yoast_wpseo_title":"WhatsApp Chatbot API: Webhooks + Session Messages | Fast2SMS","_yoast_wpseo_metadesc":"Build a WhatsApp chatbot with the webhook plus session message API loop: catch incoming replies, run your logic, answer in the same chat. Code included.","footnotes":""},"categories":[4,24],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WhatsApp Chatbot API: Webhooks + Session Messages | Fast2SMS<\/title>\n<meta name=\"description\" content=\"Build a WhatsApp chatbot with the webhook plus session message API loop: catch incoming replies, run your logic, answer in the same chat. Code included.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WhatsApp Chatbot API: Webhooks + Session Messages | Fast2SMS\" \/>\n<meta property=\"og:description\" content=\"Build a WhatsApp chatbot with the webhook plus session message API loop: catch incoming replies, run your logic, answer in the same chat. Code included.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/\" \/>\n<meta property=\"og:site_name\" content=\"Fast2SMS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Fast2SMS\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-27T07:03:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.fast2sms.com\/help\/wp-content\/uploads\/2026\/07\/chatbot-loop.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Fast2SMS\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@fast2sms\" \/>\n<meta name=\"twitter:site\" content=\"@fast2sms\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fast2SMS\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/\"},\"author\":{\"name\":\"Fast2SMS\",\"@id\":\"https:\/\/www.fast2sms.com\/help\/#\/schema\/person\/9549639ed9c1998dbed435d88b9e70c9\"},\"headline\":\"WhatsApp Chatbot API: Build Your Own Bot with Webhooks and Session Messages\",\"datePublished\":\"2026-07-27T07:03:49+00:00\",\"dateModified\":\"2026-07-27T07:03:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/\"},\"wordCount\":914,\"publisher\":{\"@id\":\"https:\/\/www.fast2sms.com\/help\/#organization\"},\"articleSection\":[\"API\",\"WhatsApp\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/\",\"url\":\"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/\",\"name\":\"WhatsApp Chatbot API: Webhooks + Session Messages | Fast2SMS\",\"isPartOf\":{\"@id\":\"https:\/\/www.fast2sms.com\/help\/#website\"},\"datePublished\":\"2026-07-27T07:03:49+00:00\",\"dateModified\":\"2026-07-27T07:03:49+00:00\",\"description\":\"Build a WhatsApp chatbot with the webhook plus session message API loop: catch incoming replies, run your logic, answer in the same chat. Code included.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.fast2sms.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WhatsApp Chatbot API: Build Your Own Bot with Webhooks and Session Messages\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.fast2sms.com\/help\/#website\",\"url\":\"https:\/\/www.fast2sms.com\/help\/\",\"name\":\"Fast2SMS\",\"description\":\"Help\",\"publisher\":{\"@id\":\"https:\/\/www.fast2sms.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.fast2sms.com\/help\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.fast2sms.com\/help\/#organization\",\"name\":\"Fast2SMS\",\"url\":\"https:\/\/www.fast2sms.com\/help\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/Fast2SMS\/\",\"https:\/\/twitter.com\/fast2sms\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.fast2sms.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.fast2sms.com\/help\/wp-content\/uploads\/2021\/01\/Fast2SMS-logo.jpg\",\"contentUrl\":\"https:\/\/www.fast2sms.com\/help\/wp-content\/uploads\/2021\/01\/Fast2SMS-logo.jpg\",\"width\":210,\"height\":210,\"caption\":\"Fast2SMS\"},\"image\":{\"@id\":\"https:\/\/www.fast2sms.com\/help\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.fast2sms.com\/help\/#\/schema\/person\/9549639ed9c1998dbed435d88b9e70c9\",\"name\":\"Fast2SMS\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WhatsApp Chatbot API: Webhooks + Session Messages | Fast2SMS","description":"Build a WhatsApp chatbot with the webhook plus session message API loop: catch incoming replies, run your logic, answer in the same chat. Code included.","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.fast2sms.com\/help\/whatsapp-chatbot-api\/","og_locale":"en_US","og_type":"article","og_title":"WhatsApp Chatbot API: Webhooks + Session Messages | Fast2SMS","og_description":"Build a WhatsApp chatbot with the webhook plus session message API loop: catch incoming replies, run your logic, answer in the same chat. Code included.","og_url":"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/","og_site_name":"Fast2SMS","article_publisher":"https:\/\/www.facebook.com\/Fast2SMS\/","article_published_time":"2026-07-27T07:03:49+00:00","og_image":[{"width":1600,"height":900,"url":"https:\/\/www.fast2sms.com\/help\/wp-content\/uploads\/2026\/07\/chatbot-loop.png","type":"image\/png"}],"author":"Fast2SMS","twitter_card":"summary_large_image","twitter_creator":"@fast2sms","twitter_site":"@fast2sms","twitter_misc":{"Written by":"Fast2SMS","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/#article","isPartOf":{"@id":"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/"},"author":{"name":"Fast2SMS","@id":"https:\/\/www.fast2sms.com\/help\/#\/schema\/person\/9549639ed9c1998dbed435d88b9e70c9"},"headline":"WhatsApp Chatbot API: Build Your Own Bot with Webhooks and Session Messages","datePublished":"2026-07-27T07:03:49+00:00","dateModified":"2026-07-27T07:03:49+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/"},"wordCount":914,"publisher":{"@id":"https:\/\/www.fast2sms.com\/help\/#organization"},"articleSection":["API","WhatsApp"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/","url":"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/","name":"WhatsApp Chatbot API: Webhooks + Session Messages | Fast2SMS","isPartOf":{"@id":"https:\/\/www.fast2sms.com\/help\/#website"},"datePublished":"2026-07-27T07:03:49+00:00","dateModified":"2026-07-27T07:03:49+00:00","description":"Build a WhatsApp chatbot with the webhook plus session message API loop: catch incoming replies, run your logic, answer in the same chat. Code included.","breadcrumb":{"@id":"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.fast2sms.com\/help\/whatsapp-chatbot-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fast2sms.com\/help\/"},{"@type":"ListItem","position":2,"name":"WhatsApp Chatbot API: Build Your Own Bot with Webhooks and Session Messages"}]},{"@type":"WebSite","@id":"https:\/\/www.fast2sms.com\/help\/#website","url":"https:\/\/www.fast2sms.com\/help\/","name":"Fast2SMS","description":"Help","publisher":{"@id":"https:\/\/www.fast2sms.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fast2sms.com\/help\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.fast2sms.com\/help\/#organization","name":"Fast2SMS","url":"https:\/\/www.fast2sms.com\/help\/","sameAs":["https:\/\/www.facebook.com\/Fast2SMS\/","https:\/\/twitter.com\/fast2sms"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fast2sms.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/www.fast2sms.com\/help\/wp-content\/uploads\/2021\/01\/Fast2SMS-logo.jpg","contentUrl":"https:\/\/www.fast2sms.com\/help\/wp-content\/uploads\/2021\/01\/Fast2SMS-logo.jpg","width":210,"height":210,"caption":"Fast2SMS"},"image":{"@id":"https:\/\/www.fast2sms.com\/help\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.fast2sms.com\/help\/#\/schema\/person\/9549639ed9c1998dbed435d88b9e70c9","name":"Fast2SMS"}]}},"_links":{"self":[{"href":"https:\/\/www.fast2sms.com\/help\/wp-json\/wp\/v2\/posts\/17130"}],"collection":[{"href":"https:\/\/www.fast2sms.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fast2sms.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fast2sms.com\/help\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fast2sms.com\/help\/wp-json\/wp\/v2\/comments?post=17130"}],"version-history":[{"count":0,"href":"https:\/\/www.fast2sms.com\/help\/wp-json\/wp\/v2\/posts\/17130\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.fast2sms.com\/help\/wp-json\/wp\/v2\/media\/17128"}],"wp:attachment":[{"href":"https:\/\/www.fast2sms.com\/help\/wp-json\/wp\/v2\/media?parent=17130"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fast2sms.com\/help\/wp-json\/wp\/v2\/categories?post=17130"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fast2sms.com\/help\/wp-json\/wp\/v2\/tags?post=17130"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}