{"id":85,"date":"2022-09-17T10:26:22","date_gmt":"2022-09-17T10:26:22","guid":{"rendered":"https:\/\/infobip.com\/developers\/?p=85"},"modified":"2023-09-11T14:35:51","modified_gmt":"2023-09-11T14:35:51","slug":"how-to-send-sms-with-go-infobip-sdk","status":"publish","type":"post","link":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk","title":{"rendered":"How to send SMS with Go Infobip SDK"},"content":{"rendered":"\n<img decoding=\"async\" src=\"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk\" alt=\"Go version\">\n\n\n\n<p>This guide shows how to send SMS messages to your phone using Infobip API through the <a href=\"https:\/\/github.com\/infobip-community\/infobip-api-go-sdk\">Go SDK.<\/a><br>For detailed information on the full capabilities of the Infobip SMS channel, check the <a href=\"https:\/\/www.infobip.com\/docs\/api#channels\/sms\">API Reference.<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Basic Go and API knowledge<\/li>\n\n\n\n<li>Go 13 (or newer) <a href=\"https:\/\/go.dev\/doc\/install\">installation<\/a><\/li>\n\n\n\n<li>A running Go project<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Steps overview<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Install the Infobip SDK.<\/li>\n\n\n\n<li>Import the required packages.<\/li>\n\n\n\n<li>Create an Infobip client.<\/li>\n\n\n\n<li>Setup your message.<\/li>\n\n\n\n<li>Send the message.<\/li>\n\n\n\n<li>Check response (optional).<\/li>\n<\/ol>\n\n\n\n<p>A bonus section shows how to send multiple messages.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install the Infobip SDK<\/h2>\n\n\n\n<p>The SDK can be retrieved as a normal Go library, using the <code>go get<\/code> command as follows:<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-go\" data-lang=\"Go\"><code>go get &quot;github.com\/infobip-community\/infobip-api-go-sdk\/v3&quot;<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Import the required packages<\/h2>\n\n\n\n<p>You&#8217;ll need the Infobip client and models imported into your source code:<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-go\" data-lang=\"Go\"><code>import (\n    \/\/..\n    &quot;github.com\/infobip-community\/infobip-api-go-sdk\/v3\/pkg\/infobip&quot;\n    &quot;github.com\/infobip-community\/infobip-api-go-sdk\/v3\/pkg\/infobip\/models&quot;\n)<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Create an Infobip client<\/h2>\n\n\n\n<p>To create the main client, you need to specify your API key, and custom base URL.<br>You can get them logging in to your <a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">I<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">n<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">f<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">o<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">b<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">i<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">p<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\"> <\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">a<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">c<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">c<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">o<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">u<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">nt<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">.<\/a><\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-go\" data-lang=\"Go\"><code>\/\/ Secrets configuration\nbaseURL := &quot;your base URL here&quot;\napiKey := &quot;your api key here&quot;\n\n\/\/ Initialize Infobip client\nclient, _ := infobip.NewClient(baseURL, apiKey)<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Setup your message<\/h2>\n\n\n\n<p>To send the message, you need to create a message and a request to send it.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-go\" data-lang=\"Go\"><code>msg := models.SMSMsg{\n    Destinations: []models.SMSDestination{\n        {To: &quot;123456789012&quot;},\n    },\n    From: &quot;Cool Gopher&quot;,\n    Text: &quot;Hello from Infobip Go SDK!&quot;,\n}\n\nreq := models.SendSMSRequest{\n    Messages: []models.SMSMsg{msg},\n}<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Send the message<\/h2>\n\n\n\n<p>Send the message like so:<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-go\" data-lang=\"Go\"><code>resp, respDetails, err := client.SMS.Send(context.Background(), req)<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Check the response (optional)<\/h2>\n\n\n\n<p>You can print the response objects to verify whether the SMS has left the Infobip platform successfully. You should see a message ID and a <code>200 OK<\/code> response code:<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-go\" data-lang=\"Go\"><code>fmt.Printf(&quot;Sent message: %+vn&quot;, resp.Messages)\nfmt.Printf(&quot;HTTP response: %sn&quot;, respDetails.HTTPResponse.StatusCode)<\/code><\/pre><\/div>\n\n\n\n<p>You should see something like this:<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-go\" data-lang=\"Go\"><code>Sent message: [{MessageID:35539968238603572226 Status:0xc000388640 To:523311800428}]\nHTTP response: 200 OK<\/code><\/pre><\/div>\n\n\n\n<p>And that&#8217;s it!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Bonus: sending multiple messages<\/h2>\n\n\n\n<p>If you want to send multiple messages, you can replace the message and request setup to include several destinations and message instances.<br>As you may have noticed, the <code>Destinations<\/code> field of a request, as well as the <code>Messages<\/code> field of a message are slices.<br>Add as many elements as you want.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-go\" data-lang=\"Go\"><code>\/\/ Create SMS messages.\nmsg := models.SMSMsg{\n    Destinations: []models.SMSDestination{\n        {To: &quot;123456789012&quot;},\n        {To: &quot;987654321098&quot;},\n    },\n    From: &quot;Cool Gopher&quot;,\n    Text: &quot;Hello from Infobip Go SDK!&quot;,\n}\nmsg2 := models.SMSMsg{\n    Destinations: []models.SMSDestination{\n        {To: &quot;123456789012&quot;},\n        {To: &quot;987654321098&quot;},\n    },\n    From: &quot;Cool Gopher&quot;,\n    Text: &quot;Hello 2 from Infobip Go SDK!&quot;,\n}\n\n\/\/ Create request to send multiple messages.\nreq := models.SendSMSRequest{\n    Messages: []models.SMSMsg{msg, msg2},\n}<\/code><\/pre><\/div>\n\n\n\n<p>Other than that, everything else is the same as sending a single message.<\/p>\n\n\n\n<p>Thanks for reading!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This guide shows how to send SMS messages to [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[14,12,255,264],"tags":[46,76],"coauthors":[156],"class_list":["post-85","post","type-post","status-publish","format-standard","hentry","category-go","category-guide","category-infobip-products","category-sms","tag-developer-docs","tag-sdk"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Send SMS with Go Infobip SDK | Infobip Developers Hub<\/title>\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.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Send SMS with Go Infobip SDK | Infobip Developers Hub\" \/>\n<meta property=\"og:description\" content=\"This guide shows how to send SMS messages to [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk\" \/>\n<meta property=\"og:site_name\" content=\"Infobip Developers Hub\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/infobip\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-17T10:26:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-11T14:35:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk\" \/>\n<meta name=\"author\" content=\"Erick Corona\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InfobipDev\" \/>\n<meta name=\"twitter:site\" content=\"@InfobipDev\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Erick Corona\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk\"},\"author\":{\"name\":\"Erick Corona\",\"@id\":\"https:\/\/www.infobip.com\/developers\/#\/schema\/person\/9e52e4d22fb53cc9a87adc54825c5e5c\"},\"headline\":\"How to send SMS with Go Infobip SDK\",\"datePublished\":\"2022-09-17T10:26:22+00:00\",\"dateModified\":\"2023-09-11T14:35:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk\"},\"wordCount\":300,\"publisher\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#primaryimage\"},\"thumbnailUrl\":\"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk\",\"keywords\":[\"developer docs\",\"SDK\"],\"articleSection\":[\"Go\",\"Guide\",\"Infobip Products\",\"SMS\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk\",\"url\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk\",\"name\":\"Send SMS with Go Infobip SDK | Infobip Developers Hub\",\"isPartOf\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#primaryimage\"},\"thumbnailUrl\":\"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk\",\"datePublished\":\"2022-09-17T10:26:22+00:00\",\"dateModified\":\"2023-09-11T14:35:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#primaryimage\",\"url\":\"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk\",\"contentUrl\":\"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.infobip.com\/developers\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to send SMS with Go Infobip SDK\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.infobip.com\/developers\/#website\",\"url\":\"https:\/\/www.infobip.com\/developers\/\",\"name\":\"Infobip Developers Hub\",\"description\":\"Build meaningful customer relationships across any channel\",\"publisher\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.infobip.com\/developers\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.infobip.com\/developers\/#organization\",\"name\":\"Infobip Developers Hub\",\"url\":\"https:\/\/www.infobip.com\/developers\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.infobip.com\/developers\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.infobip.com\/developers\/wp-content\/uploads\/2023\/03\/Infobip_logo_favicon.png\",\"contentUrl\":\"https:\/\/www.infobip.com\/developers\/wp-content\/uploads\/2023\/03\/Infobip_logo_favicon.png\",\"width\":696,\"height\":696,\"caption\":\"Infobip Developers Hub\"},\"image\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/infobip\/\",\"https:\/\/x.com\/InfobipDev\",\"https:\/\/www.youtube.com\/channel\/UCUPSTy53VecI5GIir3J3ZbQ\",\"https:\/\/github.com\/infobip-community\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.infobip.com\/developers\/#\/schema\/person\/9e52e4d22fb53cc9a87adc54825c5e5c\",\"name\":\"Erick Corona\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.infobip.com\/developers\/#\/schema\/person\/image\/1d096b53aac31da0002a2066ab28c0f1\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c59cdedbf2c066d0ebbb15c5b1da56b1c5b5e7c49e3c4aaf7410dd1462a7b74c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c59cdedbf2c066d0ebbb15c5b1da56b1c5b5e7c49e3c4aaf7410dd1462a7b74c?s=96&d=mm&r=g\",\"caption\":\"Erick Corona\"},\"description\":\"Erick has been in the software industry for more than 10 years. Currently, he works as a Developer Experience Engineer at Infobip. He's interested in software development, writing, and racing car simulators in his free time.\",\"url\":\"https:\/\/www.infobip.com\/developers\/blog\/author\/erick\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Send SMS with Go Infobip SDK | Infobip Developers Hub","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.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk","og_locale":"en_US","og_type":"article","og_title":"Send SMS with Go Infobip SDK | Infobip Developers Hub","og_description":"This guide shows how to send SMS messages to [&hellip;]","og_url":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk","og_site_name":"Infobip Developers Hub","article_publisher":"https:\/\/www.facebook.com\/infobip\/","article_published_time":"2022-09-17T10:26:22+00:00","article_modified_time":"2023-09-11T14:35:51+00:00","og_image":[{"url":"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk","type":"","width":"","height":""}],"author":"Erick Corona","twitter_card":"summary_large_image","twitter_creator":"@InfobipDev","twitter_site":"@InfobipDev","twitter_misc":{"Written by":"Erick Corona","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#article","isPartOf":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk"},"author":{"name":"Erick Corona","@id":"https:\/\/www.infobip.com\/developers\/#\/schema\/person\/9e52e4d22fb53cc9a87adc54825c5e5c"},"headline":"How to send SMS with Go Infobip SDK","datePublished":"2022-09-17T10:26:22+00:00","dateModified":"2023-09-11T14:35:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk"},"wordCount":300,"publisher":{"@id":"https:\/\/www.infobip.com\/developers\/#organization"},"image":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#primaryimage"},"thumbnailUrl":"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk","keywords":["developer docs","SDK"],"articleSection":["Go","Guide","Infobip Products","SMS"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk","url":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk","name":"Send SMS with Go Infobip SDK | Infobip Developers Hub","isPartOf":{"@id":"https:\/\/www.infobip.com\/developers\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#primaryimage"},"image":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#primaryimage"},"thumbnailUrl":"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk","datePublished":"2022-09-17T10:26:22+00:00","dateModified":"2023-09-11T14:35:51+00:00","breadcrumb":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#primaryimage","url":"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk","contentUrl":"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk"},{"@type":"BreadcrumbList","@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-send-sms-with-go-infobip-sdk#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.infobip.com\/developers\/"},{"@type":"ListItem","position":2,"name":"How to send SMS with Go Infobip SDK"}]},{"@type":"WebSite","@id":"https:\/\/www.infobip.com\/developers\/#website","url":"https:\/\/www.infobip.com\/developers\/","name":"Infobip Developers Hub","description":"Build meaningful customer relationships across any channel","publisher":{"@id":"https:\/\/www.infobip.com\/developers\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.infobip.com\/developers\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.infobip.com\/developers\/#organization","name":"Infobip Developers Hub","url":"https:\/\/www.infobip.com\/developers\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infobip.com\/developers\/#\/schema\/logo\/image\/","url":"https:\/\/www.infobip.com\/developers\/wp-content\/uploads\/2023\/03\/Infobip_logo_favicon.png","contentUrl":"https:\/\/www.infobip.com\/developers\/wp-content\/uploads\/2023\/03\/Infobip_logo_favicon.png","width":696,"height":696,"caption":"Infobip Developers Hub"},"image":{"@id":"https:\/\/www.infobip.com\/developers\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/infobip\/","https:\/\/x.com\/InfobipDev","https:\/\/www.youtube.com\/channel\/UCUPSTy53VecI5GIir3J3ZbQ","https:\/\/github.com\/infobip-community"]},{"@type":"Person","@id":"https:\/\/www.infobip.com\/developers\/#\/schema\/person\/9e52e4d22fb53cc9a87adc54825c5e5c","name":"Erick Corona","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infobip.com\/developers\/#\/schema\/person\/image\/1d096b53aac31da0002a2066ab28c0f1","url":"https:\/\/secure.gravatar.com\/avatar\/c59cdedbf2c066d0ebbb15c5b1da56b1c5b5e7c49e3c4aaf7410dd1462a7b74c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c59cdedbf2c066d0ebbb15c5b1da56b1c5b5e7c49e3c4aaf7410dd1462a7b74c?s=96&d=mm&r=g","caption":"Erick Corona"},"description":"Erick has been in the software industry for more than 10 years. Currently, he works as a Developer Experience Engineer at Infobip. He's interested in software development, writing, and racing car simulators in his free time.","url":"https:\/\/www.infobip.com\/developers\/blog\/author\/erick"}]}},"_links":{"self":[{"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/posts\/85","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/comments?post=85"}],"version-history":[{"count":9,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/posts\/85\/revisions"}],"predecessor-version":[{"id":2126,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/posts\/85\/revisions\/2126"}],"wp:attachment":[{"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/media?parent=85"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/categories?post=85"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/tags?post=85"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/coauthors?post=85"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}