{"id":2778,"date":"2022-07-12T16:13:19","date_gmt":"2022-07-12T16:13:19","guid":{"rendered":"https:\/\/www.reloadly.com\/blog\/?p=2778"},"modified":"2022-08-22T10:25:14","modified_gmt":"2022-08-22T10:25:14","slug":"how-to-track-the-status-of-each-top-up-you-make","status":"publish","type":"post","link":"https:\/\/reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/","title":{"rendered":"How to track the status of each top-up you make"},"content":{"rendered":"\n<p>When working with top-ups, it\u2019s important to know not only how to make a top-up, but also how to track its status in real time. Some operators may have connectivity issues or outages and when this happens, it\u2019s important to know if the top-up you made was processed successfully, is queued or failed.<\/p>\n\n\n\n<p>In this guide, you will learn how to determine the status of every top-up you make. This guide is broken down into the following steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Getting your access token<\/li><li>Getting the operator details for the mobile number you want to top-up<\/li><li>Making an asynchronous top-up&nbsp;<\/li><li>Tracking the status of your top-up<\/li><\/ul>\n\n\n\n<p><em>You can get your access token by following the steps in this <\/em><a href=\"https:\/\/developers.reloadly.com\/airtime\/quickstart\" target=\"_blank\" rel=\"noreferrer noopener\"><em>quickstart<\/em><\/a><em>.<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Getting the operator details of the mobile number you want to top-up.<\/h3>\n\n\n\n<p>Let\u2019s say you want to make a top-up to a mobile number registered in Argentina&nbsp; <code>+54 911 405 691 17<\/code>. The first step is to get the operator which this number is registered to. You can do this by using the mobile number and Argentina\u2019s two-letter ISO code&nbsp; to retrieve every detail of the number\u2019s operator. Below is a code sample in cURL that shows how to achieve this<\/p>\n\n\n\n<div style=\"height:38px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -i -X GET \\\n  'https:\/\/topups-sandbox.reloadly.com\/operators\/auto-detect\/phone\/91140569117\/countries\/AR\u2019\\\n  -H 'Authorization: Bearer &lt;YOUR_TOKEN_HERE&gt;'\n<\/code><\/pre>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If successful, you should have a response similar to the JSON snippet below:<\/p>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"id\": 17,\n  \"operatorId\": 17,\n  \"name\": \"Personal Argentina\",\n  \"bundle\": false,\n  \"data\": false,\n  \"pin\": false,\n  \"supportsLocalAmounts\": false,\n  \"supportsGeographicalRechargePlans\": false,\n  \"denominationType\": \"RANGE\",\n  \"senderCurrencyCode\": \"NGN\",\n  \"senderCurrencySymbol\": \"?\",\n  \"destinationCurrencyCode\": \"ARS\",\n  \"destinationCurrencySymbol\": \"$\",\n  \"commission\": 8,\n  \"internationalDiscount\": 8,\n  \"localDiscount\": 0,\n  \"mostPopularAmount\": 4160,\n  \"mostPopularLocalAmount\": null,\n  \"minAmount\": 416.02,\n  \"maxAmount\": 5824,\n  \"localMinAmount\": null,\n  \"localMaxAmount\": null,\n  \"country\": {\n    \"isoName\": \"AR\",\n    \"name\": \"Argentina\"\n  },\n  \"fx\": {\n    \"rate\": 0.168,\n    \"currencyCode\": \"ARS\"\n  },\n  \"logoUrls\": &#091;\n    \"https:\/\/s3.amazonaws.com\/rld-operator\/51fb6a28-9274-4118-baaa-180297d9a0fc-size-1.png\",\n    \"https:\/\/s3.amazonaws.com\/rld-operator\/51fb6a28-9274-4118-baaa-180297d9a0fc-size-3.png\",\n    \"https:\/\/s3.amazonaws.com\/rld-operator\/51fb6a28-9274-4118-baaa-180297d9a0fc-size-2.png\"\n  ],\n  \"fixedAmounts\": &#091;],\n  \"fixedAmountsDescriptions\": {},\n  \"localFixedAmounts\": &#091;],\n  \"localFixedAmountsDescriptions\": {},\n  \"suggestedAmounts\": &#091;\n    417,\n    2080,\n    4160\n  ],\n  \"suggestedAmountsMap\": {},\n  \"geographicalRechargePlans\": &#091;],\n  \"promotions\": &#091;],\n  \"status\": \"ACTIVE\"\n}\n<\/code><\/pre>\n\n\n\n<div style=\"height:38px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Making an asynchronous top-up<\/h3>\n\n\n\n<p>From the JSON response, we can see that the mobile number\u2019s operator is Personal Argentina.&nbsp;<\/p>\n\n\n\n<p>Once you are done with retrieving the operator details of the phone number, the next step is to make an asynchronous top-up using the phone number and the operator ID specified in the JSON response.&nbsp;<\/p>\n\n\n\n<p>An asynchronous top-up (async top-up) performs the exact same action as a regular top-up. The only difference is that instead of the top-up details as a response, an async top-up returns a single transaction ID which can be used to track the status of the top-up<\/p>\n\n\n\n<p>The cURL code snippet below shows how an async top-up request is made<\/p>\n\n\n\n<div style=\"height:38px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -i -X POST \\\n  https:\/\/topups-sandbox.reloadly.com\/topups-async \\\n  -H 'Authorization: Bearer &lt;YOUR_TOKEN_HERE&gt;' \\\n  -H 'Content-Type: application\/json' \\\n  -d '{\n    \"operatorId\": 17,\n    \"amount\": 417,\n    \"useLocalAmount\": false,\n    \"customIdentifier\": \"This is example identifier 1390\",\n    \"recipientEmail\": \"peter@nauta.com.cu\",\n    \"recipientPhone\": {\n      \"countryCode\": \"AR\",\n      \"number\": \"91140569117\"\n    },\n    \"senderPhone\": {\n      \"countryCode\": \"CA\",\n      \"number\": \"11231231231\"\n    }\n  }'\n<\/code><\/pre>\n\n\n\n<div style=\"height:38px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Once successful, the response below is gotten:<\/p>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"transactionId\": 35059\n}\n<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Tracking the status of your top-up<\/h3>\n\n\n\n<p>Now you have a single translation ID for the top-up you made, you can then use this to track its status by making a request to an endpoint that monitors top-ups.<\/p>\n\n\n\n<div style=\"height:42px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -i -X GET \\\n  https:\/\/topups-sandbox.reloadly.com\/topups\/35059\/status \\\n  -H 'Authorization: Bearer &lt;YOUR_TOKEN_HERE&gt;'\n<\/code><\/pre>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Once, successful, this request shares a response that shows you everything you need to know about the top-up.<\/p>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"code\": null,\n  \"message\": null,\n  \"status\": \"SUCCESSFUL\",\n  \"transaction\": {\n    \"transactionId\": 35059,\n    \"status\": \"SUCCESSFUL\",\n    \"operatorTransactionId\": null,\n    \"customIdentifier\": \"This is example identifier 1390\",\n    \"recipientPhone\": \"5491140569117\",\n    \"recipientEmail\": \"peter@nauta.com.cu\",\n    \"senderPhone\": \"1231231231\",\n    \"countryCode\": \"AR\",\n    \"operatorId\": 17,\n    \"operatorName\": \"Personal Argentina\",\n    \"discount\": 33.36,\n    \"discountCurrencyCode\": \"NGN\",\n    \"requestedAmount\": 417,\n    \"requestedAmountCurrencyCode\": \"NGN\",\n    \"deliveredAmount\": 107.4,\n    \"deliveredAmountCurrencyCode\": \"ARS\",\n    \"transactionDate\": \"2022-06-27 11:01:49\",\n    \"pinDetail\": null,\n    \"balanceInfo\": {\n      \"oldBalance\": 805804.36995,\n      \"newBalance\": 805420.72995,\n      \"cost\": 383.64,\n      \"currencyCode\": \"NGN\",\n      \"currencyName\": \"Nigerian Naira\",\n      \"updatedAt\": \"2022-06-27 15:01:49\"\n    }\n  }\n}\n<\/code><\/pre>\n\n\n\n<div style=\"height:42px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Resources<\/h3>\n\n\n\n<p><a href=\"https:\/\/docs.reloadly.com\/airtime\/\" target=\"_blank\" rel=\"noreferrer noopener\">Reloadly Airtime API<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/developers.reloadly.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Reloadly Developer Documentation<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Learn how to make a top-up and then track its status in real time. This guide was written with code samples in test mode. Code samples in responses may be abbreviated.<\/p>\n","protected":false},"author":17,"featured_media":2756,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[274],"tags":[11,277,282,199],"ppma_author":[359],"class_list":["post-2778","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-developer-blog","tag-airtime","tag-api","tag-developer","tag-top-ups"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to track the status of each top-up you make - Reloadly Blog<\/title>\n<meta name=\"description\" content=\"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community\" \/>\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.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to track the status of each top-up you make - Reloadly Blog\" \/>\n<meta property=\"og:description\" content=\"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/\" \/>\n<meta property=\"og:site_name\" content=\"Reloadly Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-12T16:13:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-22T10:25:14+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/54.167.47.128\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png\" \/>\n\t<meta property=\"og:image:width\" content=\"641\" \/>\n\t<meta property=\"og:image:height\" content=\"334\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Raphael Ugwu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Raphael Ugwu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/\"},\"author\":{\"name\":\"Raphael Ugwu\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#\\\/schema\\\/person\\\/18eaaac484ba8d8f4d59940e923f4954\"},\"headline\":\"How to track the status of each top-up you make\",\"datePublished\":\"2022-07-12T16:13:19+00:00\",\"dateModified\":\"2022-08-22T10:25:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/\"},\"wordCount\":409,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/cover-image-blogs.png\",\"keywords\":[\"airtime\",\"api\",\"developer\",\"top-ups\"],\"articleSection\":[\"Developer Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/\",\"name\":\"How to track the status of each top-up you make - Reloadly Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/cover-image-blogs.png\",\"datePublished\":\"2022-07-12T16:13:19+00:00\",\"dateModified\":\"2022-08-22T10:25:14+00:00\",\"description\":\"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/cover-image-blogs.png\",\"contentUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/cover-image-blogs.png\",\"width\":641,\"height\":334},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/how-to-track-the-status-of-each-top-up-you-make\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to track the status of each top-up you make\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/\",\"name\":\"Reloadly Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#organization\",\"name\":\"Reloadly\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/logo-1.svg\",\"contentUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/logo-1.svg\",\"width\":100,\"height\":100,\"caption\":\"Reloadly\"},\"image\":{\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/#\\\/schema\\\/person\\\/18eaaac484ba8d8f4d59940e923f4954\",\"name\":\"Raphael Ugwu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g64f921045402e9b44a3fe0f4c884aa1f\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g\",\"caption\":\"Raphael Ugwu\"},\"url\":\"https:\\\/\\\/reloadly.com\\\/blog\\\/author\\\/fullstackmafia\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to track the status of each top-up you make - Reloadly Blog","description":"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community","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.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/","og_locale":"en_US","og_type":"article","og_title":"How to track the status of each top-up you make - Reloadly Blog","og_description":"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community","og_url":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/","og_site_name":"Reloadly Blog","article_published_time":"2022-07-12T16:13:19+00:00","article_modified_time":"2022-08-22T10:25:14+00:00","og_image":[{"width":641,"height":334,"url":"http:\/\/54.167.47.128\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","type":"image\/png"}],"author":"Raphael Ugwu","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Raphael Ugwu","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/#article","isPartOf":{"@id":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/"},"author":{"name":"Raphael Ugwu","@id":"https:\/\/www.reloadly.com\/blog\/#\/schema\/person\/18eaaac484ba8d8f4d59940e923f4954"},"headline":"How to track the status of each top-up you make","datePublished":"2022-07-12T16:13:19+00:00","dateModified":"2022-08-22T10:25:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/"},"wordCount":409,"commentCount":0,"publisher":{"@id":"https:\/\/www.reloadly.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/#primaryimage"},"thumbnailUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","keywords":["airtime","api","developer","top-ups"],"articleSection":["Developer Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/","url":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/","name":"How to track the status of each top-up you make - Reloadly Blog","isPartOf":{"@id":"https:\/\/www.reloadly.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/#primaryimage"},"image":{"@id":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/#primaryimage"},"thumbnailUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","datePublished":"2022-07-12T16:13:19+00:00","dateModified":"2022-08-22T10:25:14+00:00","description":"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community","breadcrumb":{"@id":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/#primaryimage","url":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","contentUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","width":641,"height":334},{"@type":"BreadcrumbList","@id":"https:\/\/www.reloadly.com\/blog\/how-to-track-the-status-of-each-top-up-you-make\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.reloadly.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to track the status of each top-up you make"}]},{"@type":"WebSite","@id":"https:\/\/www.reloadly.com\/blog\/#website","url":"https:\/\/www.reloadly.com\/blog\/","name":"Reloadly Blog","description":"","publisher":{"@id":"https:\/\/www.reloadly.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.reloadly.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.reloadly.com\/blog\/#organization","name":"Reloadly","url":"https:\/\/www.reloadly.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.reloadly.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2020\/11\/logo-1.svg","contentUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2020\/11\/logo-1.svg","width":100,"height":100,"caption":"Reloadly"},"image":{"@id":"https:\/\/www.reloadly.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.reloadly.com\/blog\/#\/schema\/person\/18eaaac484ba8d8f4d59940e923f4954","name":"Raphael Ugwu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g64f921045402e9b44a3fe0f4c884aa1f","url":"https:\/\/secure.gravatar.com\/avatar\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g","caption":"Raphael Ugwu"},"url":"https:\/\/reloadly.com\/blog\/author\/fullstackmafia\/"}]}},"jetpack_featured_media_url":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","authors":[{"term_id":359,"user_id":17,"is_guest":0,"slug":"fullstackmafia","display_name":"Raphael Ugwu","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/c590dfe6cf705fd18b8c2f919ecfbb1ace8dcd6bb7f5712363f76bb4c55b6000?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts\/2778","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/comments?post=2778"}],"version-history":[{"count":4,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts\/2778\/revisions"}],"predecessor-version":[{"id":3448,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts\/2778\/revisions\/3448"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/media\/2756"}],"wp:attachment":[{"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/media?parent=2778"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/categories?post=2778"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/tags?post=2778"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=2778"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}