{"id":2798,"date":"2022-07-13T09:20:06","date_gmt":"2022-07-13T09:20:06","guid":{"rendered":"https:\/\/www.reloadly.com\/blog\/?p=2798"},"modified":"2022-08-22T09:57:01","modified_gmt":"2022-08-22T09:57:01","slug":"how-to-make-an-electricity-bill-payment-on-reloadly","status":"publish","type":"post","link":"https:\/\/reloadly.com\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/","title":{"rendered":"How to make an electricity bill payment on Reloadly"},"content":{"rendered":"\n<p>When working with Reloadly\u2019s utility payments API, one key action you will perform repeatedly is paying a bill. In this guide, you will learn how to pay an electricity bill via the API. The steps involved in this guide are<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Getting your access token for the utility payment service<\/li><li>Getting the list of electricity billers available<\/li><li>Getting the biller ID of your preferred utility biller<\/li><li>Paying a utility bill<\/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\/utility-payments\/introduction\" target=\"_blank\" rel=\"noreferrer noopener\"><em>quickstart<\/em><\/a><em>.<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Getting the list of electricity billers available<\/h3>\n\n\n\n<p>Assuming you are located in Kenya and wanted to make a local electricity bill payment, your first step would be to make a request to the API to view a list of all the available electricity billers on Reloadly. The cURL code snippet below shows how this can be achieved<\/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>curl -i -X GET \\\n  'https:\/\/utilities-sandbox.reloadly.com\/billers?id=0&amp;name=string&amp;type=ELECTRICITY_BILL_PAYMENT&amp;serviceType=string&amp;countryISOCode=string&amp;page=0&amp;size=0' \\\n  -H 'Authorization: Bearer &lt;YOUR_TOKEN_HERE&gt;'\n<\/code><\/pre>\n\n\n\n<div style=\"height:41px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If successful, you will receive a JSON snippet with details of every biller Reloadly has access to<\/p>\n\n\n\n<div style=\"height:41px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>&#091;\n      {\n        \"id\": 1,\n        \"name\": \"Ikeja Electricity Postpaid\",\n        \"countryCode\": \"NG\",\n        \"countryName\": \"Nigeria\",\n        \"type\": \"ELECTRICITY_BILL_PAYMENT\",\n        \"serviceType\": \"POSTPAID\",\n        \"localAmountSupported\": true,\n        \"localTransactionCurrencyCode\": \"NGN\",\n        \"minLocalTransactionAmount\": 1000,\n        \"maxLocalTransactionAmount\": 300000,\n        \"localTransactionFee\": 1184.61536,\n        \"localTransactionFeeCurrencyCode\": \"NGN\",\n        \"localDiscountPercentage\": 0,\n        \"internationalAmountSupported\": true,\n        \"internationalTransactionCurrencyCode\": \"NGN\",\n        \"minInternationalTransactionAmount\": 1000,\n        \"maxInternationalTransactionAmount\": 300000,\n        \"internationalTransactionFee\": 1184.61536,\n        \"internationalTransactionFeeCurrencyCode\": \"NGN\",\n        \"internationalDiscountPercentage\": 0,\n        \"fx\": {\n          \"rate\": 1,\n          \"currencyCode\": \"NGN\"\n        }\n      },\n      {\n        \"id\": 19,\n        \"name\": \"Kenya Electricity Prepaid\",\n        \"countryCode\": \"KE\",\n        \"countryName\": \"Kenya\",\n        \"type\": \"ELECTRICITY_BILL_PAYMENT\",\n        \"serviceType\": \"PREPAID\",\n        \"localAmountSupported\": true,\n        \"localTransactionCurrencyCode\": \"KES\",\n        \"minLocalTransactionAmount\": 10,\n        \"maxLocalTransactionAmount\": 1000000,\n        \"localTransactionFee\": 336.55649,\n        \"localTransactionFeeCurrencyCode\": \"KES\",\n        \"localDiscountPercentage\": 0,\n        \"internationalAmountSupported\": true,\n        \"internationalTransactionCurrencyCode\": \"NGN\",\n        \"minInternationalTransactionAmount\": 41.565453,\n        \"maxInternationalTransactionAmount\": 3197343.2,\n        \"internationalTransactionFee\": 1246.9635,\n        \"internationalTransactionFeeCurrencyCode\": \"NGN\",\n        \"internationalDiscountPercentage\": 0,\n        \"fx\": {\n          \"rate\": 0.269900824,\n          \"currencyCode\": \"NGN\"\n        }\n      }\n    ]\n<\/code><\/pre>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Getting the biller ID of your preferred utility biller<\/h3>\n\n\n\n<p>In the JSON response that contains all the utility billers available on Reloadly, scan for the Kenyan utility biller you want to use. Once you find it, take note of its id value. Let\u2019s take a moment to understand what this means:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>id: This is the unique identification number of each biller. It uniquely identifies the biller servicing the utility.<\/li><\/ul>\n\n\n\n<p>From the response, our preferred Kenyan biller is Kenya Electricity Prepaid. The key details for this biller are<\/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>{\n  \u201cid\u201d: 19,\n  \u201cname\u201d: \u201cKenya Electricity Prepaid\u201d,\n  \u201ccountryCode\u201d: \u201cKE\u201d,\n  \u201ctype\u201d: \u201cELECTRICITY_BILL_PAYMENT\u201d,\n  \u201cserviceType\u201d: \u201cPREPAID\u201d\n}\n<\/code><\/pre>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Making your electricity bill payment<\/h3>\n\n\n\n<p>Once you have identified the biller details, the next step is to make your bill payment. This can be done by placing a request to Reloadly\u2019s Utility Payments API using the following parameters:<br><\/p>\n\n\n\n<p><code>subscriberAccountNumber<\/code>: This indicates the account \/ reference \/ card number of the subscriber \/ recipient of the electricity bill payment.<\/p>\n\n\n\n<p><code>amount<\/code>: This indicates the amount to be paid for the bill.<\/p>\n\n\n\n<p><code>id<\/code>: The identification number of the Kenyan biller.<\/p>\n\n\n\n<p><code>useLocalAmount<\/code>:&nbsp; Indicates if the amount being presented is in the local currency of the biller. If this parameter is not provided or is set to false, then the payment will be presented in the user&#8217;s wallet currency.<\/p>\n\n\n\n<p><code>referenceId<\/code>: A unique string that you may choose to provide. If you provide one, it will be tied to the transaction. You can query back your transaction with this <strong>referenceId<\/strong> as well.<\/p>\n\n\n\n<p>The cURL snippet below shows how an electricity bill is paid using the API<\/p>\n\n\n\n<div style=\"height:39px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -i -X POST \\\n  https:\/\/utilities-sandbox.reloadly.com\/pay \\\n  -H 'Authorization: Bearer &lt;YOUR_TOKEN_HERE&gt;' \\\n  -H 'Content-Type: application\/json' \\\n  -d '{\n    \"subscriberAccountNumber\": \"4223568280\",\n    \"amount\": 1000,\n    \"billerId\": \"19\",\n    \"useLocalAmount\": false,\n    \"referenceId\": \"may-electricity-bill\"\n  }'\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, a JSON response containing details of your utility bill payment will be returned<\/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>{\n  \"id\": 108,\n  \"status\": \"PROCESSING\",\n  \"referenceId\": \"may-electricity-bill\",\n  \"code\": \"PAYMENT_PROCESSING_IN_PROGRESS\",\n  \"message\": \"The payment is being processed, status will be updated when biller processes the payment.\",\n  \"submittedAt\": \"2022-07-05 12:28:07\",\n  \"finalStatusAvailabilityAt\": \"2022-07-06 12:28:07\"\n}\n<\/code><\/pre>\n\n\n\n<div style=\"height:41px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The <code>id<\/code> property in the response refers to the identification number of the utility payment transaction.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Resources<\/h3>\n\n\n\n<p><a href=\"https:\/\/docs.reloadly.com\/utility-payments\/\" target=\"_blank\" rel=\"noreferrer noopener\">Reloadly Utility Payments 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 pay an electricity bill using Reloadly\u2019s utility payment API. 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":[277,405,282,404,275,406],"ppma_author":[359],"class_list":["post-2798","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-developer-blog","tag-api","tag-bill","tag-developer","tag-electricity","tag-reloadly","tag-utility"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to make an electricity bill payment on Reloadly - 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:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to make an electricity bill payment on Reloadly - 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:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/\" \/>\n<meta property=\"og:site_name\" content=\"Reloadly Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-13T09:20:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-22T09:57:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.reloadly.com\/blog\/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:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/\"},\"author\":{\"name\":\"Raphael Ugwu\",\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#\\\/schema\\\/person\\\/18eaaac484ba8d8f4d59940e923f4954\"},\"headline\":\"How to make an electricity bill payment on Reloadly\",\"datePublished\":\"2022-07-13T09:20:06+00:00\",\"dateModified\":\"2022-08-22T09:57:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/\"},\"wordCount\":447,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/cover-image-blogs.png\",\"keywords\":[\"api\",\"bill\",\"developer\",\"electricity\",\"reloadly\",\"utility\"],\"articleSection\":[\"Developer Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/\",\"url\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/\",\"name\":\"How to make an electricity bill payment on Reloadly - Reloadly Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.reloadly.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/cover-image-blogs.png\",\"datePublished\":\"2022-07-13T09:20:06+00:00\",\"dateModified\":\"2022-08-22T09:57:01+00:00\",\"description\":\"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/#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:\\\/\\\/127.0.0.1\\\/blog\\\/how-to-make-an-electricity-bill-payment-on-reloadly\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/127.0.0.1\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to make an electricity bill payment on Reloadly\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/\",\"name\":\"Reloadly Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/#organization\",\"name\":\"Reloadly\",\"url\":\"https:\\\/\\\/blog.reloadly.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.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:\\\/\\\/blog.reloadly.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.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 make an electricity bill payment on Reloadly - 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:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/","og_locale":"en_US","og_type":"article","og_title":"How to make an electricity bill payment on Reloadly - Reloadly Blog","og_description":"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community","og_url":"https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/","og_site_name":"Reloadly Blog","article_published_time":"2022-07-13T09:20:06+00:00","article_modified_time":"2022-08-22T09:57:01+00:00","og_image":[{"width":641,"height":334,"url":"https:\/\/www.reloadly.com\/blog\/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:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/#article","isPartOf":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/"},"author":{"name":"Raphael Ugwu","@id":"https:\/\/blog.reloadly.com\/blog\/#\/schema\/person\/18eaaac484ba8d8f4d59940e923f4954"},"headline":"How to make an electricity bill payment on Reloadly","datePublished":"2022-07-13T09:20:06+00:00","dateModified":"2022-08-22T09:57:01+00:00","mainEntityOfPage":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/"},"wordCount":447,"commentCount":0,"publisher":{"@id":"https:\/\/blog.reloadly.com\/blog\/#organization"},"image":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/#primaryimage"},"thumbnailUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","keywords":["api","bill","developer","electricity","reloadly","utility"],"articleSection":["Developer Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/","url":"https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/","name":"How to make an electricity bill payment on Reloadly - Reloadly Blog","isPartOf":{"@id":"https:\/\/blog.reloadly.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/#primaryimage"},"image":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/#primaryimage"},"thumbnailUrl":"https:\/\/www.reloadly.com\/blog\/wp-content\/uploads\/2022\/07\/cover-image-blogs.png","datePublished":"2022-07-13T09:20:06+00:00","dateModified":"2022-08-22T09:57:01+00:00","description":"Reloadly Resources. Insights, Info and Analysis For The Mobile Airtime API Community","breadcrumb":{"@id":"https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/#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:\/\/127.0.0.1\/blog\/how-to-make-an-electricity-bill-payment-on-reloadly\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/127.0.0.1\/blog\/"},{"@type":"ListItem","position":2,"name":"How to make an electricity bill payment on Reloadly"}]},{"@type":"WebSite","@id":"https:\/\/blog.reloadly.com\/blog\/#website","url":"https:\/\/blog.reloadly.com\/blog\/","name":"Reloadly Blog","description":"","publisher":{"@id":"https:\/\/blog.reloadly.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.reloadly.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/blog.reloadly.com\/blog\/#organization","name":"Reloadly","url":"https:\/\/blog.reloadly.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.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:\/\/blog.reloadly.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/blog.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\/2798","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=2798"}],"version-history":[{"count":3,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts\/2798\/revisions"}],"predecessor-version":[{"id":3440,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/posts\/2798\/revisions\/3440"}],"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=2798"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/categories?post=2798"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/tags?post=2798"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/reloadly.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=2798"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}