{"id":883,"date":"2022-05-12T13:25:28","date_gmt":"2022-05-12T12:25:28","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=883"},"modified":"2022-07-05T09:32:30","modified_gmt":"2022-07-05T08:32:30","slug":"remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/","title":{"rendered":"Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS"},"content":{"rendered":"\n<p>So the other day I was trying to integrate <strong><a href=\"https:\/\/www.remita.net\" target=\"_blank\" rel=\"noreferrer noopener\">Remita<\/a> <\/strong>payment integration system into a React software application I was working on.<\/p>\n\n\n\n<p>Like all developers, I browsed through their <a href=\"https:\/\/api.remita.net\" target=\"_blank\" rel=\"noreferrer noopener\">website<\/a> looking for an official documentation to use, just like the other payment systems, but couldn&#8217;t find any.<\/p>\n\n\n\n<p>Granted, there&#8217;s a documentation for Javascript, Node js, PHP and other software development programs listed on the Remita website. So what I&#8217;m going to do is convert the plain Javascript code to React.<\/p>\n\n\n\n<p>At the time of writing this article, there still isn&#8217;t an official documentation on how to generate <strong>RRR<\/strong> in React JS on the Remita website, and I hope this simplifies things well enough for other developers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-see-also-how-to-use-data-tables-in-react-js\"><a href=\"https:\/\/codeflarelimited.com\/blog\/how-to-use-data-tables-in-react-js\/\" target=\"_blank\" rel=\"noreferrer noopener\">See Also: How to Use Data tables in React JS<\/a><\/h2>\n\n\n\n<p>Let&#8217;s begin.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-make-payment-with-remita\">Make Payment With Remita<\/h2>\n\n\n\n<p>Since we&#8217;re using <strong>Crypto JS<\/strong> for the API hash, we need to first import that into our project using yarn.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">yarn add crypto-js<\/code><\/pre>\n\n\n\n<p>Next, we initialise it in our project.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"jsx\" class=\"language-jsx\">import React, { Component } from 'react';\nlet CryptoJS = require(\"crypto-js\");\n\n  makeRemitaPayment = () =&gt; {\n    let merchantId = \"2547916\";\n    let apiKey = \"1946\"\n    let serviceTypeId = \"4430731\"\n    let d = new Date();\n    let orderId = d.getTime();\n    let totalAmount = \"10000\";\n    let apiHash =       CryptoJS.SHA512(merchantId+serviceTypeId+orderId+totalAmount+apiKey);\n\n    let req = {\n      method: \"POST\",\n      headers: {\n        Accept: \"application\/json\",\n        \"Content-Type\": \"application\/json\",\n        Authorization: `remitaConsumerKey=${merchantId},remitaConsumerToken=${apiHash}`,\n      },\n      body: JSON.stringify({\n        \"serviceTypeId\": serviceTypeId,\n        \"amount\": totalAmount,\n        \"orderId\": orderId,\n        \"payerName\": 'Pete Attah',\n        \"payerEmail\": 'pete@domain.com',\n        \"payerPhone\": '808080808080',\n        \"description\": \"Your payment description here\"\n      }),\n    };\n\n    fetch(`https:\/\/remitademo.net\/remita\/exapp\/api\/v1\/send\/api\/echannelsvc\/merchant\/api\/paymentinit`, req)\n      .then((response) =&gt; response.json())\n      .then((responseJson) =&gt; {\n        console.warn(responseJson);\n      })\n      .catch((error) =&gt; {\n         console.log(error);\n      });\n  }\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-result\">Result:<\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"722\" height=\"32\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-10.35.35.png\" alt=\"generate rrr in react js\" class=\"wp-image-885\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-10.35.35.png 722w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-10.35.35-300x13.png 300w\" sizes=\"auto, (max-width: 722px) 100vw, 722px\" \/><figcaption>Remita RRR Code Generation<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-check-transaction-status\">Check Transaction Status<\/h2>\n\n\n\n<p>To check transaction status, we will pass the<strong><em> merchant id<\/em><\/strong>, the generated<strong><em> rrr<\/em><\/strong> and the <strong><em>api hash<\/em><\/strong>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"jsx\" class=\"language-jsx\">  checkPaymentStatus = async () =&gt; {\n    let merchantId = \"2547916\";\n    let apiKey = \"1946\"\n    let serviceTypeId = \"4430731\"\n    let d = new Date();\n    let orderId = d.getTime();\n    let totalAmount = \"10000\";\n    let rrr = \"your_generated_rrr\";\n    let apiHash = CryptoJS.SHA512(rrr + apiKey + merchantId);\n\n    let req = {\n      method: \"GET\",\n      headers: {\n        Accept: \"application\/json\",\n        \"Content-Type\": \"application\/json\",\n        Authorization: `remitaConsumerKey=${merchantId},remitaConsumerToken=${apiHash}`,\n      },\n    };\n\n    await fetch(`https:\/\/remitademo.net\/remita\/exapp\/api\/v1\/send\/api\/echannelsvc\/${merchantId}\/${rrr}\/${apiHash}\/status.reg`, req)\n      .then((response) =&gt; response.json())\n      .then((responseJson) =&gt; {\n        console.warn(responseJson);\n      })\n      .catch((error) =&gt; {\n        console.error(error);\n        });\n      });\n  }<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-result-for-remita-payment-integration\">Result For Remita Payment Integration:<\/h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"528\" height=\"191\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-12.56.55.png\" alt=\"remita payment integration\" class=\"wp-image-886\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-12.56.55.png 528w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-12.56.55-300x109.png 300w\" sizes=\"auto, (max-width: 528px) 100vw, 528px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>There we have it guys. We&#8217;ve been able to both generate <strong>RRR<\/strong> and <strong>check transaction status<\/strong>.<\/p>\n\n\n\n<p>Let me know if you have any questions in the comments.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-enrol-for-a-software-development-training\"><a href=\"https:\/\/codeflarelimited.com\" target=\"_blank\" rel=\"noreferrer noopener\">Enrol For A Software Development Training<\/a><\/h2>\n","protected":false},"excerpt":{"rendered":"<p>So the other day I was trying to integrate Remita payment integration system into a React software application<\/p>\n","protected":false},"author":1,"featured_media":889,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[73,98],"tags":[],"class_list":["post-883","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-react-js","category-softare-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS<\/title>\n<meta name=\"description\" content=\"For remita payment integration there still isn&#039;t an official documentation on how to generate RRR in React JS on the Remita website\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS\" \/>\n<meta property=\"og:description\" content=\"For remita payment integration there still isn&#039;t an official documentation on how to generate RRR in React JS on the Remita website\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-12T12:25:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-05T08:32:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-13.20.08.png\" \/>\n\t<meta property=\"og:image:width\" content=\"932\" \/>\n\t<meta property=\"og:image:height\" content=\"487\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS\",\"datePublished\":\"2022-05-12T12:25:28+00:00\",\"dateModified\":\"2022-07-05T08:32:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/\"},\"wordCount\":237,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/Screenshot-2022-05-12-at-13.20.08.png\",\"articleSection\":[\"react js\",\"softare development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/\",\"name\":\"Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/Screenshot-2022-05-12-at-13.20.08.png\",\"datePublished\":\"2022-05-12T12:25:28+00:00\",\"dateModified\":\"2022-07-05T08:32:30+00:00\",\"description\":\"For remita payment integration there still isn't an official documentation on how to generate RRR in React JS on the Remita website\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/Screenshot-2022-05-12-at-13.20.08.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/Screenshot-2022-05-12-at-13.20.08.png\",\"width\":932,\"height\":487,\"caption\":\"generate rrr with react js\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"softare development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/softare-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS","description":"For remita payment integration there still isn't an official documentation on how to generate RRR in React JS on the Remita website","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:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/","og_locale":"en_US","og_type":"article","og_title":"Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS","og_description":"For remita payment integration there still isn't an official documentation on how to generate RRR in React JS on the Remita website","og_url":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2022-05-12T12:25:28+00:00","article_modified_time":"2022-07-05T08:32:30+00:00","og_image":[{"width":932,"height":487,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-13.20.08.png","type":"image\/png"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS","datePublished":"2022-05-12T12:25:28+00:00","dateModified":"2022-07-05T08:32:30+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/"},"wordCount":237,"commentCount":2,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-13.20.08.png","articleSection":["react js","softare development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/","url":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/","name":"Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-13.20.08.png","datePublished":"2022-05-12T12:25:28+00:00","dateModified":"2022-07-05T08:32:30+00:00","description":"For remita payment integration there still isn't an official documentation on how to generate RRR in React JS on the Remita website","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-13.20.08.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-13.20.08.png","width":932,"height":487,"caption":"generate rrr with react js"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/remita-payment-integration-how-to-generate-rrr-and-check-transaction-status-in-react-js\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"softare development","item":"https:\/\/codeflarelimited.com\/blog\/softare-development\/"},{"@type":"ListItem","position":3,"name":"Remita Payment Integration: How to Generate RRR and Check Transaction Status in React JS"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/05\/Screenshot-2022-05-12-at-13.20.08.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/883","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=883"}],"version-history":[{"count":7,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/883\/revisions"}],"predecessor-version":[{"id":951,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/883\/revisions\/951"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/889"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=883"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=883"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=883"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}