{"id":148,"date":"2022-09-17T14:51:33","date_gmt":"2022-09-17T14:51:33","guid":{"rendered":"https:\/\/infobip.com\/developers\/?p=148"},"modified":"2023-09-11T14:34:27","modified_gmt":"2023-09-11T14:34:27","slug":"how-to-get-sms-delivery-reports-with-go-infobip-sdk","status":"publish","type":"post","link":"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk","title":{"rendered":"How to get SMS delivery reports with Go Infobip SDK"},"content":{"rendered":"\n<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk\" alt=\"\" width=\"66\" height=\"20\">\n\n\n\n<p>This guide will show you how to get delivery reports for your recently sent SMS messages through the <a href=\"https:\/\/github.com\/infobip-community\/infobip-api-go-sdk\">Infobip Go SDK.<\/a><br>Delivery reports will tell you the specific status of each of your recently sent messages. 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 Go 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>Send a message, if you haven&#8217;t already.<\/li>\n\n\n\n<li>Configure query parameters.<\/li>\n\n\n\n<li>Get the reports.<\/li>\n\n\n\n<li>Check the reports (optional).<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\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-plain\"><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-plain\"><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 by logging into 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\">n<\/a><a rel=\"noreferrer noopener\" href=\"https:\/\/portal.infobip.com\/\" target=\"_blank\">t<\/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-plain\"><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\">Send a message, if you haven&#8217;t<\/h2>\n\n\n\n<p>To get actual data in the report you need to have sent messages recently. If you haven&#8217;t, please send a message, following our <a href=\"https:\/\/url.to.guide\/sms.send\" target=\"_blank\" rel=\"noreferrer noopener\">Send SMS Guide.<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Configure query parameters<\/h2>\n\n\n\n<p>You can limit the number of messages reported, or reduce the query to a specific message ID or bulk ID. If you want to filter these, specify the ID in the <code>GetSMSDeliveryReportsParams<\/code> instance.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>queryParams := models.GetSMSDeliveryReportsParams{\n    BulkID:    &quot;your-bulk-id&quot;,\n    MessageID: &quot;your-message-id&quot;,\n    Limit:     10,\n}<\/code><\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Get the reports<\/h2>\n\n\n\n<p>Call the endpoint to get your delivery reports.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>resp, respDetails, _ := client.SMS.GetDeliveryReports(context.Background(), queryParams)<\/code><\/pre><\/div>\n\n\n\n<p>Note that delivery reports can be retrieved only once. A subsequent call to this endpoint will be empty if no new messages have been sent.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Check the reports (optional)<\/h2>\n\n\n\n<p>To verify your reports, you can print the response and the return status code.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>fmt.Printf(&quot;Reports: %+vn&quot;, resp)\nfmt.Printf(&quot;HTTP response: %sn&quot;, respDetails.HTTPResponse.Status)<\/code><\/pre><\/div>\n\n\n\n<p>You should be able to see the report&#8217;s contents slice and a <code>200 OK<\/code> status code.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>Reports: {Results:[{BulkID: CallbackData: DoneAt:2022-06-24T20:37:30.932+0000 Error:{Description:No Error GroupID:0 GroupName:OK ID:0 Name:NO_ERROR Permanent:false} From:Cool Gopher MccMnc:null MessageID:35610304960103571556 Price:{PricePerMessage:0 Currency:EUR} SentAt:2022-06-24T20:37:29.633+0000 SmsCount:1 Status:{Action: Description:Message delivered to handset GroupID:3 GroupName:DELIVERED ID:5 Name:DELIVERED_TO_HANDSET} To:523311800428}]}\nHTTP response: 200 OK<\/code><\/pre><\/div>\n\n\n\n<p>The reports have many fields that you can access with the <code>.<\/code> as with any struct.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>resp.Results[0].Status.Description\nresp.Results[0].MessageID \/\/ and so on ...<\/code><\/pre><\/div>\n\n\n\n<p>That&#8217;s all for this guide. Thanks for reading!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This guide will show you how to get delivery [&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-148","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>Get SMS Delivery Reports 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-get-sms-delivery-reports-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=\"Get SMS Delivery Reports with Go Infobip SDK | Infobip Developers Hub\" \/>\n<meta property=\"og:description\" content=\"This guide will show you how to get delivery [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-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-17T14:51:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-11T14:34:27+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-get-sms-delivery-reports-with-go-infobip-sdk#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk\"},\"author\":{\"name\":\"Erick Corona\",\"@id\":\"https:\/\/www.infobip.com\/developers\/#\/schema\/person\/9e52e4d22fb53cc9a87adc54825c5e5c\"},\"headline\":\"How to get SMS delivery reports with Go Infobip SDK\",\"datePublished\":\"2022-09-17T14:51:33+00:00\",\"dateModified\":\"2023-09-11T14:34:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk\"},\"wordCount\":343,\"publisher\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-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-get-sms-delivery-reports-with-go-infobip-sdk\",\"url\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk\",\"name\":\"Get SMS Delivery Reports 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-get-sms-delivery-reports-with-go-infobip-sdk#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk#primaryimage\"},\"thumbnailUrl\":\"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk\",\"datePublished\":\"2022-09-17T14:51:33+00:00\",\"dateModified\":\"2023-09-11T14:34:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-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-get-sms-delivery-reports-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 get SMS delivery reports 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":"Get SMS Delivery Reports 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-get-sms-delivery-reports-with-go-infobip-sdk","og_locale":"en_US","og_type":"article","og_title":"Get SMS Delivery Reports with Go Infobip SDK | Infobip Developers Hub","og_description":"This guide will show you how to get delivery [&hellip;]","og_url":"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk","og_site_name":"Infobip Developers Hub","article_publisher":"https:\/\/www.facebook.com\/infobip\/","article_published_time":"2022-09-17T14:51:33+00:00","article_modified_time":"2023-09-11T14:34:27+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-get-sms-delivery-reports-with-go-infobip-sdk#article","isPartOf":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk"},"author":{"name":"Erick Corona","@id":"https:\/\/www.infobip.com\/developers\/#\/schema\/person\/9e52e4d22fb53cc9a87adc54825c5e5c"},"headline":"How to get SMS delivery reports with Go Infobip SDK","datePublished":"2022-09-17T14:51:33+00:00","dateModified":"2023-09-11T14:34:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk"},"wordCount":343,"publisher":{"@id":"https:\/\/www.infobip.com\/developers\/#organization"},"image":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-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-get-sms-delivery-reports-with-go-infobip-sdk","url":"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk","name":"Get SMS Delivery Reports 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-get-sms-delivery-reports-with-go-infobip-sdk#primaryimage"},"image":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk#primaryimage"},"thumbnailUrl":"https:\/\/img.shields.io\/github\/go-mod\/go-version\/infobip-community\/infobip-api-go-sdk","datePublished":"2022-09-17T14:51:33+00:00","dateModified":"2023-09-11T14:34:27+00:00","breadcrumb":{"@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-with-go-infobip-sdk"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.infobip.com\/developers\/blog\/how-to-get-sms-delivery-reports-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-get-sms-delivery-reports-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 get SMS delivery reports 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\/148","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=148"}],"version-history":[{"count":9,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/posts\/148\/revisions"}],"predecessor-version":[{"id":2032,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/posts\/148\/revisions\/2032"}],"wp:attachment":[{"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/media?parent=148"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/categories?post=148"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/tags?post=148"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.infobip.com\/developers\/wp-json\/wp\/v2\/coauthors?post=148"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}