{"info":{"_postman_id":"c387414a-bceb-4407-9b8b-8ceed8c37773","name":"Baxi Test","description":"<html><head></head><body><h2 id=\"airtimeflip-api\">AirtimeFlip API</h2>\n<h2 id=\"introduction\">Introduction</h2>\n<p>This API can be used for Electricity Bill and Cable TV Subscription.</p>\n<h2 id=\"overview\">Overview</h2>\n<p>This API has two sections in the request: message and data or errors</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>The API make use of <code>access token</code>, the access token can be fetched by calling the login endpoint. This access token should be sent along the http headers whenever any endpoint that requires authentication is called.</p>\n<p><em>The <code>access_token</code> is a Bearer token and valid for 1hour.</em></p>\n<h2 id=\"error-codes\">Error Codes</h2>\n<p>Status code <code>422</code> is returned for all validation error cases except token authentication error (<code>401</code>) or internal server/connection error (<code>503</code>)</p>\n<h2 id=\"main-endpoint\">Main Endpoint</h2>\n<p><code>http://127.0.0.1:8000/v1</code></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"7306778","collectionId":"c387414a-bceb-4407-9b8b-8ceed8c37773","publishedId":"TVKD2xL5","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-09-22T04:18:35.000Z"},"item":[{"name":"Authentication","item":[{"name":"Register","id":"4cda7261-7dfe-4e6e-9ef3-ec98ea0881f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Umar\",\n    \"last_name\": \"Farouq\",\n    \"other_name\": \"Yusuf\",\n    \"email\": \"pharoouzy@gmail.com\",\n    \"phone_number\": \"08078780379\",\n    \"password\": \"Umar-Farouq\",\n    \"password_confirmation\": \"Umar-Farouq\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/register","description":"<p>This endpoint can be used for user registration</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Public</li>\n</ul>\n<h6 id=\"request-information\">Request Information</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>first_name</td>\n<td>string</td>\n<td>first_name of the  user</td>\n<td>M</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td>string</td>\n<td>last_name of the  user</td>\n<td>M</td>\n</tr>\n<tr>\n<td>other_name</td>\n<td>string</td>\n<td>other_name of the  user</td>\n<td>O</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>user unique email address</td>\n<td>M</td>\n</tr>\n<tr>\n<td>phone_number</td>\n<td>string</td>\n<td>phone number of the  user</td>\n<td>M</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string:min 6</td>\n<td>user password</td>\n<td>M</td>\n</tr>\n<tr>\n<td>password_confirmation</td>\n<td>string:min 6</td>\n<td>user password confirmation (same as password)</td>\n<td>M</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["register"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a3549b38-48bd-42b5-b235-58c898b3198e","name":"Register Error","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Umar\",\n    \"last_name\": \"Farouq\",\n    \"other_name\": \"Yusuf\",\n    \"email\": \"umar@gmail.com\",\n    \"phone_number\": \"08078780859\",\n    \"password\": \"Umar-Farouq\",\n    \"password_confirmation\": \"Umar-Farouq\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/register"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Mon, 21 Sep 2020 21:55:43 GMT"},{"key":"Date","value":"Mon, 21 Sep 2020 21:55:43 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"An error occurred.\",\n    \"errors\": {\n        \"email\": [\n            \"The email has already been taken.\"\n        ],\n        \"phone_number\": [\n            \"The phone number has already been taken.\"\n        ]\n    }\n}"}],"_postman_id":"4cda7261-7dfe-4e6e-9ef3-ec98ea0881f0"},{"name":"Verify","id":"1f23f615-d291-4500-b05e-255d03cafb08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"verification_code\": 608181\n}"},"url":"{{url}}/verify/{{user}}","description":"<p>Call this end point to verify user email address.</p>\n<h1 id=\"access\">Access</h1>\n<ul>\n<li>Public</li>\n</ul>\n<h1 id=\"request-information\">Request Information</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>verification_code</td>\n<td>integer</td>\n<td>verification_code sent to user's email address</td>\n<td>M</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"url-parameter\">Url Parameter</h1>\n","urlObject":{"path":["verify","{{user}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"877f1c39-0aec-478a-a621-73dfd55c940c","name":"Verify Success","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"verification_code\": 608181\n}"},"url":"{{url}}/verify/{{user}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Mon, 21 Sep 2020 21:16:28 GMT"},{"key":"Date","value":"Mon, 21 Sep 2020 21:16:28 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You account has been successfully activated.\"\n}"},{"id":"e95f63ae-4d8c-49a4-9073-c9f0a1008426","name":"Verify Error","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"verification_code\": \"798589\"\n}"},"url":"{{url}}/verify/{{user}}"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Sat, 22 Aug 2020 15:00:44 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User is already active or suspended.\"\n}"}],"_postman_id":"1f23f615-d291-4500-b05e-255d03cafb08"},{"name":"Resend Verification Code","id":"b8732cbf-2be2-4981-8844-0bbecf63fb62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/verify/resend/{{user}}","description":"<p>Call this end point to resend verification code to user.</p>\n<h5 id=\"access\">Access</h5>\n<ul>\n<li>Public</li>\n</ul>\n<h5 id=\"request-information\">Request Information</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>user email address</td>\n<td>M</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"url-parameter\">Url Parameter</h5>\n<ul>\n<li>user - this can be obtained from the url sent to user email</li>\n</ul>\n","urlObject":{"path":["verify","resend","{{user}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"05ea770f-b305-402c-8a30-272ad551f942","name":"Resend Verification Code Error","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/verify/resend/{user}"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Sat, 22 Aug 2020 14:58:44 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User not authorized.\"\n}"},{"id":"32278fc9-98b2-4a4e-b785-722c4707efd2","name":"Resend Verification Code Success","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/verify/resend/{{user}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Sun, 23 Aug 2020 08:17:44 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"A new verification code has been sent to umar@gmail.com\"\n}"}],"_postman_id":"b8732cbf-2be2-4981-8844-0bbecf63fb62"},{"name":"Login","id":"021d6829-156e-4b68-b0a4-0e15c439dce7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"umar@app.com\",\n\t\"password\": \"password\",\n\t\"remember_me\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/login","description":"<p>Use the login endpoint to get your API access token, some endpoints of the API requires the API access token</p>\n<h1 id=\"request-information\">Request Information</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>user email address</td>\n<td>M</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string:min 6</td>\n<td>user password</td>\n<td>M</td>\n</tr>\n<tr>\n<td>remember_me</td>\n<td>boolean</td>\n<td>for saving remember me token in db</td>\n<td>O</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["login"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ae9feb3f-92af-4860-b80f-42e5dd905a8d","name":"Login","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"umar@app.com\",\n\t\"password\": \"password\",\n\t\"remember_me\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Mon, 21 Sep 2020 20:49:21 GMT"},{"key":"Date","value":"Mon, 21 Sep 2020 20:49:21 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Authenticated\",\n    \"data\": {\n        \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiIxIiwianRpIjoiMTUxNTNkMmFiZTRkYTk0MmNjNTA0OGEyNTQ3YjI4MjY5ZDE0OGY3MTVjMmJhODA2ODNjZWNkODU0Zjg5ZmE4MGE4ZDYzMDFhOWUzNDgyMjIiLCJpYXQiOjE2MDA3MjEzNjEsIm5iZiI6MTYwMDcyMTM2MSwiZXhwIjoxNjAwNzI0OTYwLCJzdWIiOiI3NTg3NzIiLCJzY29wZXMiOltdfQ.QLN_HsEiHkow4IrssTWzeGBU6TAgcjLPLidYKOiuU61evkGuDbDWWznQ2ntiLGAKdKrwPan-GxFzBXN_6N8x74DWU4ZnuLFyfcprHFJI0t6fRfizktU89N9Kp0sEqy8KeYLT7trQSnnOF8KeAHRujQI6zFqmYkyXMgTOQCvY8-6h5DMa-kQz1kbXK7iEVtKzW22KRs_UbrOEKnnyZaUFY23He0h8m1MJfEfJEedf7xAlpx3G0FLdFi_pJ66G40NCA_6kYiaZUQvpwXeXEukLGUlHOFsyQNEAqN0A4wfA5a6-TtwLKICcgYo2DqFU6IyCMStm-HPxmTXLF9gpPek5Wqw2-Im74VxqibmbfxiiBXJGZN32bU2di7fYBFCkAirNbmNPpB4v2WsFTwZyN-nFPhVNrCcgQRDKJVDISjx34CGI34Gx517JjKbiZw4zkbQUKKQIOyD0IERiEldzYJSEOpJjtv2OXMln8zMtHs0p9Y5JYrPDTbkAl2nZVEVYikFv-w1Y9GgDgYUdFSwfVOpRjpwhDdkl14Bju2fuUZKFT6MUTt6avdlWD6c-HgVDfQMGIorFjYKuNyJW2GbvbXIowY-Y_F9LrqrMjQPqzAjZIvLlWxp30sq0P19o0CmE5OxPt4YdNfuDDhw6znBhjPvlyRQXV9-uGIQZgfUeG4Nj0QI\",\n        \"token_type\": \"Bearer\",\n        \"expires_at\": \"2020-09-21T21:49:20.000000Z\",\n        \"user\": {\n            \"id\": 758772,\n            \"first_name\": \"Umar\",\n            \"last_name\": \"Farouq\",\n            \"other_name\": \"Yusuf\",\n            \"email\": \"umar@app.com\",\n            \"phone_number\": \"08078780858\",\n            \"status\": \"active\",\n            \"email_verified_at\": null,\n            \"created_at\": \"2020-09-21T20:44:15.000000Z\",\n            \"updated_at\": \"2020-09-21T20:49:21.000000Z\",\n            \"full_name\": \"Farouq Umar Yusuf\"\n        }\n    }\n}"}],"_postman_id":"021d6829-156e-4b68-b0a4-0e15c439dce7"},{"name":"Initialize Pasword Reset","id":"cd78c800-d8c4-4cb3-8e7e-3d1ec9bbbf12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"pharoouzy@gmail.com\"\n}"},"url":"{{url}}/password/forgot","description":"<p>Call this end point to request for user password reset</p>\n<h1 id=\"request-information\">Request Information</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>user email address</td>\n<td>M</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["password","forgot"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ec35fbbf-0c33-49b5-8b82-9934a252e598","name":"Initialize Pasword Reset Success","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"farouk.y@umar.com.ng\"\n}"},"url":"{{url}}/password/forgot"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Sun, 23 Aug 2020 00:37:44 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"We have e-mailed your password reset link!\"\n}"},{"id":"f4a08bad-9991-493b-a3e3-2815e386426b","name":"Initialize Pasword Reset Error","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"farouk.y@umar.com.ngs\"\n}"},"url":"{{url}}/password/forgot"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Sun, 23 Aug 2020 00:37:59 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"An error occurred.\",\n    \"errors\": {\n        \"email\": [\n            \"The selected email is invalid.\"\n        ]\n    }\n}"}],"_postman_id":"cd78c800-d8c4-4cb3-8e7e-3d1ec9bbbf12"},{"name":"Reset Password","id":"0a25f68d-e84a-4ab0-9b65-3d3aebc1b1c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"password\": \"password\",\n   \"password_confirmation\": \"password\",\n   \"token\": \"{{token}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/password/reset/{{user}}","description":"<p>This endpoint enables user to reset his password</p>\n<h6 id=\"request-information\">Request Information</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>password</td>\n<td>string:min 6</td>\n<td>user password</td>\n<td>M</td>\n</tr>\n<tr>\n<td>password_confirmation</td>\n<td>string:min 6</td>\n<td>confirm user password</td>\n<td>M</td>\n</tr>\n<tr>\n<td>token</td>\n<td>string</td>\n<td>token retrieved via password reset in the email sent to the user</td>\n<td>M</td>\n</tr>\n</tbody>\n</table>\n</div><h6 id=\"url-parameter\">Url Parameter</h6>\n<ul>\n<li>user - encrypted data retrieved via password reset in the email sent to the user</li>\n</ul>\n<h6 id=\"additional-information\">Additional Information</h6>\n<p>The link sent to user email contains front end url in this format <code>https://airtimeflip.com/password/reset/[user]/[token]</code> so the email and token should be sent to this endpoint</p>\n","urlObject":{"path":["password","reset","{{user}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"28b21348-1b3e-4113-b652-8dfbe4c086c4","name":"Reset Password Success","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"password\": \"password\",\n   \"password_confirmation\": \"password\",\n   \"token\": \"{{token}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/password/reset/{{user}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Mon, 21 Sep 2020 21:29:09 GMT"},{"key":"Date","value":"Mon, 21 Sep 2020 21:29:09 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Password Reset successfully.\"\n}"},{"id":"c5130566-0d0c-455e-9682-c4da159d44d4","name":"Reset Password Error","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"password\": \"password\",\n   \"password_confirmation\": \"password\",\n   \"token\": \"{{token}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/password/reset/{{user}}"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Mon, 21 Sep 2020 21:29:32 GMT"},{"key":"Date","value":"Mon, 21 Sep 2020 21:29:32 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Invalid password reset credentials.\"\n}"}],"_postman_id":"0a25f68d-e84a-4ab0-9b65-3d3aebc1b1c5"},{"name":"Logout","id":"2f2efc34-afc1-40f0-9809-dbe74dbf3242","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/logout","description":"<p>Call this endpoint to log user out of the API</p>\n","urlObject":{"path":["logout"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d721605e-a964-4a72-ab41-11995cd7ec3d","name":"Logout","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/logout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Mon, 22 Jun 2020 16:00:06 GMT"},{"key":"Date","value":"Mon, 22 Jun 2020 16:00:06 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User logged out from API successfully\"\n}"}],"_postman_id":"2f2efc34-afc1-40f0-9809-dbe74dbf3242"}],"id":"4fdf4964-6709-40db-adce-6f8808ec3b9c","description":"<p>This section contains all authentication endpoints</p>\n","event":[{"listen":"prerequest","script":{"id":"b1ed980a-9bf6-48c8-8d77-c7b69beba5c3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8357848c-3c77-4730-bbd8-9dd9b04de265","type":"text/javascript","exec":[""]}}],"_postman_id":"4fdf4964-6709-40db-adce-6f8808ec3b9c"},{"name":"Users","item":[{"name":"Profile","id":"4ca0f3cf-05cf-4a26-b329-c05ee2e4fdfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{access_token}}","type":"text"}],"url":"{{url}}/user","description":"<p>Get profile of currently logged in user</p>\n","urlObject":{"path":["user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6236120d-49bc-46f7-b6be-0bce51923975","name":"Profile","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{access_token}}","type":"text"}],"url":"{{url}}/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Mon, 21 Sep 2020 21:31:29 GMT"},{"key":"Date","value":"Mon, 21 Sep 2020 21:31:29 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Data retrieved successfully\",\n    \"data\": {\n        \"id\": 474171,\n        \"first_name\": \"Umar\",\n        \"last_name\": \"Farouq\",\n        \"other_name\": \"Yusuf\",\n        \"email\": \"umar@app.com\",\n        \"phone_number\": \"08078780858\",\n        \"status\": \"active\",\n        \"email_verified_at\": \"2020-09-21T21:02:43.000000Z\",\n        \"created_at\": \"2020-09-21T21:02:43.000000Z\",\n        \"updated_at\": \"2020-09-21T21:30:20.000000Z\",\n        \"full_name\": \"Farouq Umar Yusuf\"\n    }\n}"}],"_postman_id":"4ca0f3cf-05cf-4a26-b329-c05ee2e4fdfd"},{"name":"Get Users","id":"9e3e3d89-5823-4e87-904c-15aad4af0aa1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","value":"{{access_token}}","type":"text"}],"url":"{{url}}/users","description":"<p>This endpoint provides the list of all users on the system</p>\n","urlObject":{"path":["users"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"de2d0898-73c7-462f-9bfe-e1c75254630b","name":"Get Users Success","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","value":"{{access_token}}","type":"text"}],"url":"{{url}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Mon, 21 Sep 2020 21:32:05 GMT"},{"key":"Date","value":"Mon, 21 Sep 2020 21:32:05 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Success.\",\n    \"data\": [\n        {\n            \"id\": 474171,\n            \"first_name\": \"Umar\",\n            \"last_name\": \"Farouq\",\n            \"other_name\": \"Yusuf\",\n            \"email\": \"umar@app.com\",\n            \"phone_number\": \"08078780858\",\n            \"status\": \"active\",\n            \"email_verified_at\": \"2020-09-21T21:02:43.000000Z\",\n            \"created_at\": \"2020-09-21T21:02:43.000000Z\",\n            \"updated_at\": \"2020-09-21T21:30:20.000000Z\",\n            \"full_name\": \"Farouq Umar Yusuf\"\n        },\n        {\n            \"id\": 743467,\n            \"first_name\": \"Umar\",\n            \"last_name\": \"Farouq\",\n            \"other_name\": \"Yusuf\",\n            \"email\": \"umar@gmail.com\",\n            \"phone_number\": \"08078780859\",\n            \"status\": \"active\",\n            \"email_verified_at\": \"2020-09-21T21:16:25.000000Z\",\n            \"created_at\": \"2020-09-21T21:09:21.000000Z\",\n            \"updated_at\": \"2020-09-21T21:16:25.000000Z\",\n            \"full_name\": \"Farouq Umar Yusuf\"\n        }\n    ]\n}"}],"_postman_id":"9e3e3d89-5823-4e87-904c-15aad4af0aa1"},{"name":"Update User","id":"4e68ee8d-879c-49ea-ac0c-573eed53275c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Yusuf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/user","description":"<p>This endpoint can be used to update user profile</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Authenticated User</li>\n</ul>\n<h6 id=\"request-information\">Request Information</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>first_name</td>\n<td>string</td>\n<td>first_name of the  user</td>\n<td>O</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td>string</td>\n<td>last_name of the  user</td>\n<td>O</td>\n</tr>\n<tr>\n<td>other_name</td>\n<td>string</td>\n<td>other_name of the  user</td>\n<td>O</td>\n</tr>\n<tr>\n<td>phone_number</td>\n<td>string</td>\n<td>phone number of the  user</td>\n<td>O</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d9ab063e-ea43-4ce9-94d8-45046a6d32ce","name":"Update User Success","originalRequest":{"method":"PUT","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Yusuf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 12:06:18 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 12:06:18 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Profile updated successfully.\",\n    \"data\": {\n        \"id\": 707032,\n        \"first_name\": \"Yusuf\",\n        \"last_name\": \"Farouq\",\n        \"other_name\": \"Yusuf\",\n        \"email\": \"umar@app.com\",\n        \"phone_number\": \"08078780858\",\n        \"status\": \"active\",\n        \"email_verified_at\": \"2020-09-22T08:17:38.000000Z\",\n        \"created_at\": \"2020-09-22T08:17:38.000000Z\",\n        \"updated_at\": \"2020-09-22T12:06:18.000000Z\",\n        \"full_name\": \"Farouq Yusuf Yusuf\"\n    }\n}"}],"_postman_id":"4e68ee8d-879c-49ea-ac0c-573eed53275c"},{"name":"Update Password","id":"64520901-a9a5-4fbf-bbc7-470fa4c229c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"old_password\": \"password\",\n    \"password\": \"password\",\n    \"password_confirmation\": \"password\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/user","description":"<p>Use this endpoint to update users password</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Current User</li>\n</ul>\n<h1 id=\"request-information\">Request Information</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>old_password</td>\n<td>string</td>\n<td>user or rider old password</td>\n<td>M</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string:min 6</td>\n<td>user or rider new password</td>\n<td>M</td>\n</tr>\n<tr>\n<td>password_confirmation</td>\n<td>string:min 6</td>\n<td>confirm user or rider new password</td>\n<td>M</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["user"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6e32138f-d978-44ff-bf23-fbe9c34f5533","name":"Update Password old password","originalRequest":{"method":"PATCH","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"old_password\": \"password1\",\n    \"password\": \"password\",\n    \"password_confirmation\": \"password\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/user"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 01 Sep 2020 14:04:45 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"An error occurred.\",\n    \"errors\": {\n        \"old_password\": [\n            \"The old password is invalid.\"\n        ]\n    }\n}"},{"id":"8b353c2f-9a30-4ba5-a9e0-26f32e27b045","name":"Update Password Success","originalRequest":{"method":"PATCH","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"old_password\": \"password\",\n    \"password\": \"password\",\n    \"password_confirmation\": \"password\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.18.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 01 Sep 2020 14:05:11 GMT"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Password changed successfully\"\n}"}],"_postman_id":"64520901-a9a5-4fbf-bbc7-470fa4c229c1"}],"id":"45d9df41-5270-4c5d-99fe-c6430968d5c7","description":"<p>This consist of all endpoint for managing user profile.</p>\n","event":[{"listen":"prerequest","script":{"id":"95e4e412-a571-4877-b721-61fefc244a1d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3bc77899-7938-4777-aea0-529281123644","type":"text/javascript","exec":[""]}}],"_postman_id":"45d9df41-5270-4c5d-99fe-c6430968d5c7"},{"name":"Services","item":[{"name":"Electricity Bill","item":[{"name":"Get Billers","id":"77f8012e-3a47-49ed-83aa-f7bcdb890961","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/electricity/billers","description":"<p>use this endpoint to get all electricity billers</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Authenticated User</li>\n</ul>\n","urlObject":{"path":["electricity","billers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bd701895-3311-475f-ab66-840b78c4e024","name":"Get Billers Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/electricity/billers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 00:18:26 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 00:18:26 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Success\",\n    \"data\": [\n        {\n            \"service_type\": \"jos_electric_postpaid\",\n            \"shortname\": \"jos electric postpaid\",\n            \"biller_id\": 2,\n            \"product_id\": 2,\n            \"name\": \"Jos Postpaid\"\n        },\n        {\n            \"service_type\": \"jos_electric_prepaid\",\n            \"shortname\": \"jos electric prepaid\",\n            \"biller_id\": 2,\n            \"product_id\": 3,\n            \"name\": \"Jos Prepaid\"\n        },\n        {\n            \"service_type\": \"kaduna_electric_prepaid\",\n            \"shortname\": \"kaduna electric prepaid\",\n            \"biller_id\": 3,\n            \"product_id\": 5,\n            \"name\": \"Kaduna Prepaid\"\n        },\n        {\n            \"service_type\": \"eko_electric_prepaid\",\n            \"shortname\": \"eko electric prepaid\",\n            \"biller_id\": 5,\n            \"product_id\": 11,\n            \"name\": \"Eko Prepaid\"\n        },\n        {\n            \"service_type\": \"ibadan_electric_prepaid\",\n            \"shortname\": \"ibadan electric prepaid\",\n            \"biller_id\": 6,\n            \"product_id\": 12,\n            \"name\": \"Ibadan Disco Prepaid (Fets Wallet)\"\n        },\n        {\n            \"service_type\": \"portharcourt_electric_postpaid\",\n            \"shortname\": \"portharcourt electric postpaid\",\n            \"biller_id\": 7,\n            \"product_id\": 13,\n            \"name\": \"Port Harcourt Postpaid (Xpresspayments)\"\n        },\n        {\n            \"service_type\": \"portharcourt_electric_prepaid\",\n            \"shortname\": \"portharcourt electric prepaid\",\n            \"biller_id\": 7,\n            \"product_id\": 14,\n            \"name\": \"Port Harcourt Prepaid (Xpresspayments)\"\n        },\n        {\n            \"service_type\": \"enugu_electric_postpaid\",\n            \"shortname\": \"enugu electric postpaid\",\n            \"biller_id\": 8,\n            \"product_id\": 15,\n            \"name\": \"Enugu Postpaid\"\n        },\n        {\n            \"service_type\": \"enugu_electric_prepaid\",\n            \"shortname\": \"enugu electric prepaid\",\n            \"biller_id\": 8,\n            \"product_id\": 16,\n            \"name\": \"Enugu Prepaid\"\n        },\n        {\n            \"service_type\": \"abuja_electric_postpaid\",\n            \"shortname\": \"abuja electric postpaid\",\n            \"biller_id\": 9,\n            \"product_id\": 17,\n            \"name\": \"Abuja Postpaid\"\n        },\n        {\n            \"service_type\": \"abuja_electric_prepaid\",\n            \"shortname\": \"abuja electric prepaid\",\n            \"biller_id\": 9,\n            \"product_id\": 18,\n            \"name\": \"Abuja Prepaid\"\n        },\n        {\n            \"service_type\": \"kedco_electric_postpaid\",\n            \"shortname\": \"kedco electric postpaid\",\n            \"biller_id\": 10,\n            \"product_id\": 21,\n            \"name\": \"Kano Postpaid\"\n        },\n        {\n            \"service_type\": \"kedco_electric_prepaid\",\n            \"shortname\": \"kedco electric prepaid\",\n            \"biller_id\": 10,\n            \"product_id\": 22,\n            \"name\": \"Kano Prepaid\"\n        },\n        {\n            \"service_type\": \"ikeja_electric_prepaid\",\n            \"shortname\": \"ikeja electric prepaid\",\n            \"biller_id\": 4,\n            \"product_id\": 25,\n            \"name\": \"Ikeja Disco Token Vending (Prepaid)\"\n        },\n        {\n            \"service_type\": \"ikeja_electric_postpaid\",\n            \"shortname\": \"ikeja electric postpaid\",\n            \"biller_id\": 4,\n            \"product_id\": 26,\n            \"name\": \"Ikeja Disco Bill Payment (Postpaid)\"\n        },\n        {\n            \"service_type\": \"eko_electric_postpaid\",\n            \"shortname\": \"eko electric postpaid\",\n            \"biller_id\": 5,\n            \"product_id\": 27,\n            \"name\": \"Eko Postpaid\"\n        },\n        {\n            \"service_type\": \"ibadan_electric_postpaid\",\n            \"shortname\": \"ibadan electric postpaid\",\n            \"biller_id\": 6,\n            \"product_id\": 44,\n            \"name\": \"Ibadan Disco Postpaid (Fets Wallet)\"\n        }\n    ]\n}"}],"_postman_id":"77f8012e-3a47-49ed-83aa-f7bcdb890961"},{"name":"Verify Meter Number","id":"e9e4672a-bd4b-4ed6-9b2e-67b67d47f94a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{access_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"prepaid\",\n\t\"meter_number\": \"04042404048\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/electricity/verify","description":"<p>This endpoint allows user to verify meter number and initiate transaction</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Authenticated User</li>\n</ul>\n<h6 id=\"request-information\">Request Information</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>service type: <code>prepaid</code> or <code>postpaid</code></td>\n<td>M</td>\n</tr>\n<tr>\n<td>meter_number</td>\n<td>string</td>\n<td>meter number the user wish to recharge. Min:11 Max:16</td>\n<td>M</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["electricity","verify"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"35eab6a2-b962-481f-ba09-4ab401969520","name":"Verify Meter Number Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{access_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"prepaid\",\n\t\"meter_number\": \"04042404048\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/electricity/verify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 09:33:13 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 09:33:13 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"verification successful\",\n    \"data\": {\n        \"reference\": \"ARF-526060179266\",\n        \"name\": \"SUNDAY AGAGARAGA\",\n        \"address\": \"SHOLAJA ST, VICTORY EST, 5A, IBA\",\n        \"outstandingBalance\": \"\",\n        \"dueDate\": null,\n        \"district\": \"OJO\",\n        \"accountNumber\": \"04042404048\",\n        \"minimumAmount\": null,\n        \"rawOutput\": null,\n        \"errorMessage\": null\n    }\n}"},{"id":"df50a7d2-e5b0-4c0d-aed3-76d671917064","name":"Verify Meter Number Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{access_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"prepaid\",\n\t\"meter_number\": \"07085653942\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/electricity/verify"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 08:58:08 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 08:58:08 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"error\",\n    \"data\": {\n        \"status\": \"error\",\n        \"message\": \"Undefined property: stdClass::$firstName\",\n        \"code\": \"BX0017\",\n        \"errors\": []\n    }\n}"}],"_postman_id":"e9e4672a-bd4b-4ed6-9b2e-67b67d47f94a"},{"name":"Recharge","id":"4340ef9e-680f-47ba-aa7f-52ac46f3cd4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n\t\"phone_number\": \"08078780858\",\n\t\"amount\": 20000\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/electricity/recharge/{{reference}}","description":"<p>This endpoint allows user to verify meter number and initiate transaction</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Authenticated User</li>\n</ul>\n<h6 id=\"request-information\">Request Information</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>amount</td>\n<td>numeric</td>\n<td>amount user wish to recharge</td>\n<td>M</td>\n</tr>\n<tr>\n<td>phone_number</td>\n<td>string</td>\n<td>user's phone number. Min:11 Max:11</td>\n<td>M</td>\n</tr>\n</tbody>\n</table>\n</div><h6 id=\"url-parameter\">Url Parameter</h6>\n<ul>\n<li>reference - transaction reference recieved from <em>Verify Meter Number</em> endpoint</li>\n</ul>\n","urlObject":{"path":["electricity","recharge","{{reference}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3bfbacb9-50e3-4488-8ec6-2d59bdc7aec0","name":"Recharge Completed Transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n\t\"phone_number\": \"08078780858\",\n\t\"amount\": 20000\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/electricity/recharge/{{reference}}"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 09:34:07 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 09:34:07 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Transaction has already been handled.\"\n}"},{"id":"8807a24e-1e48-4f4e-aba1-d08f41f05d72","name":"Recharge Success (Prepaid)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n\t\"phone_number\": \"08078780858\",\n\t\"amount\": 20000\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/electricity/recharge/{{reference}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 09:27:44 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 09:27:44 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"recharge successful\",\n    \"data\": {\n        \"id\": 768844,\n        \"reference\": \"ARF-525698769394\",\n        \"amount\": 20000,\n        \"user_id\": 707032,\n        \"name\": \"TESTMETER1\",\n        \"phone_number\": \"08078780858\",\n        \"meter_number\": \"04042404048\",\n        \"smartcard_number\": null,\n        \"addon_months_paid_for\": null,\n        \"product_months_paid_for\": null,\n        \"addon_code\": null,\n        \"product_code\": null,\n        \"address\": \"ABULE - EGBA BU ABULE\",\n        \"service_type\": \"ikeja_electric_prepaid\",\n        \"outstanding_balance\": \"\",\n        \"token_code\": \"93969729775435740649\",\n        \"token_amount\": 20000,\n        \"amount_of_power\": \"20000 kWh\",\n        \"transaction_code\": \"0\",\n        \"transaction_description\": \"Payment Successful\",\n        \"transaction_status\": \"success\",\n        \"created_at\": \"2020-09-22T09:27:28.000000Z\",\n        \"updated_at\": \"2020-09-22T09:27:44.000000Z\",\n        \"type\": \"Prepaid\",\n        \"status\": \"successful\"\n    }\n}"},{"id":"ab602a28-a4ae-4714-b5d0-a43caeedce6c","name":"Recharge Pending Transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n\t\"phone_number\": \"08078780858\",\n\t\"amount\": 20000\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/electricity/recharge/{{reference}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 10:27:34 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 10:27:34 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"pending transaction\",\n    \"data\": {\n        \"id\": 661070,\n        \"reference\": \"ARF-529465661635\",\n        \"baxi_reference\": null,\n        \"amount\": 20000,\n        \"user_id\": 707032,\n        \"name\": \"SUNDAY AGAGARAGA\",\n        \"phone_number\": null,\n        \"meter_number\": \"04042404048\",\n        \"smartcard_number\": null,\n        \"addon_months_paid_for\": null,\n        \"product_months_paid_for\": null,\n        \"addon_code\": null,\n        \"product_code\": null,\n        \"address\": \"SHOLAJA ST, VICTORY EST, 5A, IBA\",\n        \"service_type\": \"eko_electric_prepaid\",\n        \"outstanding_balance\": \"\",\n        \"token_code\": null,\n        \"token_amount\": 20000,\n        \"amount_of_power\": null,\n        \"transaction_code\": null,\n        \"transaction_description\": \"Kindly requery transaction status\",\n        \"transaction_status\": \"pending\",\n        \"created_at\": \"2020-09-22T10:27:20.000000Z\",\n        \"updated_at\": \"2020-09-22T10:27:34.000000Z\",\n        \"type\": \"Prepaid\",\n        \"status\": \"pending\"\n    }\n}"},{"id":"b4642485-92a8-4ad4-aa39-75c4183589f8","name":"Recharge Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n\t\"phone_number\": \"08078780858\",\n\t\"amount\": \"10000\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/electricity/recharge/{{reference}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 01:49:36 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 01:49:36 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"error.\",\n    \"data\": {\n        \"status\": \"error\",\n        \"message\": \"Duplicate Agent Transaction Reference\",\n        \"code\": \"BX0023\",\n        \"errors\": {\n            \"status\": \"error\",\n            \"code\": \"BX0023\",\n            \"message\": \"Duplicate Agent Transaction Reference\"\n        }\n    }\n}"},{"id":"e145c7a1-47e2-468c-8c1c-a313dcf551b3","name":"Recharge Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n\t\"phone_number\": \"08078780858\",\n\t\"amount\": 10000\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/electricity/recharge/{{reference}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 09:26:32 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 09:26:32 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"recharge successful\",\n    \"data\": {\n        \"id\": 470855,\n        \"reference\": \"ARF-525620471763\",\n        \"amount\": 10000,\n        \"user_id\": 707032,\n        \"name\": \"NP NGEMA\",\n        \"phone_number\": \"08078780858\",\n        \"meter_number\": \"04042404048\",\n        \"smartcard_number\": null,\n        \"addon_months_paid_for\": null,\n        \"product_months_paid_for\": null,\n        \"addon_code\": null,\n        \"product_code\": null,\n        \"address\": \"6 ABIODUN ODESEYE Shomolu BU\",\n        \"service_type\": \"ikeja_electric_postpaid\",\n        \"outstanding_balance\": \"31829\",\n        \"token_code\": null,\n        \"token_amount\": 10000,\n        \"amount_of_power\": null,\n        \"transaction_code\": \"0\",\n        \"transaction_description\": \"Payment Successful\",\n        \"transaction_status\": \"success\",\n        \"created_at\": \"2020-09-22T09:26:13.000000Z\",\n        \"updated_at\": \"2020-09-22T09:26:32.000000Z\",\n        \"type\": \"Postpaid\",\n        \"status\": \"successful\"\n    }\n}"}],"_postman_id":"4340ef9e-680f-47ba-aa7f-52ac46f3cd4a"}],"id":"cdec74a7-1867-4762-a8dc-4e1a4181eaa1","description":"<p>Electricity Bill endpoints</p>\n","event":[{"listen":"prerequest","script":{"id":"b93c5af1-cef5-4bdf-b282-aa8c5744cb96","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dc58540b-8d9e-44dc-89f0-d14a1a89ed67","type":"text/javascript","exec":[""]}}],"_postman_id":"cdec74a7-1867-4762-a8dc-4e1a4181eaa1"},{"name":"DSTV","item":[{"name":"Get Provider Bouquets","id":"282c39f5-93d1-49b2-af74-2feffb35896e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/multichoice/providers","description":"<p>This endpoint provides list of all <code>provider bouquets</code> for DSTV Subscription</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Authenticated User</li>\n</ul>\n","urlObject":{"path":["multichoice","providers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"77fd76d4-0f52-4d59-8860-825f3c77cf22","name":"Get Provider Bouquets Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{url}}/multichoice/providers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 03:16:49 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 03:16:49 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Success\",\n    \"data\": [\n        {\n            \"availablePricingOptions\": [\n                {\n                    \"monthsPaidFor\": 1,\n                    \"price\": 25550,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 2,\n                    \"price\": 51100,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 3,\n                    \"price\": 76650,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 4,\n                    \"price\": 102200,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 5,\n                    \"price\": 127750,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 6,\n                    \"price\": 153300,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 7,\n                    \"price\": 178850,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 8,\n                    \"price\": 204400,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 9,\n                    \"price\": 229950,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 10,\n                    \"price\": 255500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 12,\n                    \"price\": 281050,\n                    \"invoicePeriod\": 12\n                }\n            ],\n            \"code\": \"PRWFRNSE36\",\n            \"name\": \"DStv Premium French\",\n            \"description\": \" \"\n        },\n        {\n            \"availablePricingOptions\": [\n                {\n                    \"monthsPaidFor\": 1,\n                    \"price\": 1850,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 2,\n                    \"price\": 3700,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 3,\n                    \"price\": 5550,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 4,\n                    \"price\": 7400,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 5,\n                    \"price\": 9250,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 6,\n                    \"price\": 11100,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 7,\n                    \"price\": 12950,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 8,\n                    \"price\": 14800,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 9,\n                    \"price\": 16650,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 10,\n                    \"price\": 18500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 12,\n                    \"price\": 20350,\n                    \"invoicePeriod\": 12\n                }\n            ],\n            \"code\": \"NLTESE36\",\n            \"name\": \"Padi\",\n            \"description\": \" \"\n        },\n        {\n            \"availablePricingOptions\": [\n                {\n                    \"monthsPaidFor\": 1,\n                    \"price\": 7900,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 2,\n                    \"price\": 15800,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 3,\n                    \"price\": 23700,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 4,\n                    \"price\": 31600,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 5,\n                    \"price\": 39500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 6,\n                    \"price\": 47400,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 7,\n                    \"price\": 55300,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 8,\n                    \"price\": 63200,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 9,\n                    \"price\": 71100,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 10,\n                    \"price\": 79000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 12,\n                    \"price\": 86900,\n                    \"invoicePeriod\": 12\n                }\n            ],\n            \"code\": \"COMPE36\",\n            \"name\": \"DStv Compact\",\n            \"description\": \" \"\n        },\n        {\n            \"availablePricingOptions\": [\n                {\n                    \"monthsPaidFor\": 1,\n                    \"price\": 12400,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 2,\n                    \"price\": 24800,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 3,\n                    \"price\": 37200,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 4,\n                    \"price\": 49600,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 5,\n                    \"price\": 62000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 6,\n                    \"price\": 74400,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 7,\n                    \"price\": 86800,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 8,\n                    \"price\": 99200,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 9,\n                    \"price\": 111600,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 10,\n                    \"price\": 124000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 12,\n                    \"price\": 136400,\n                    \"invoicePeriod\": 12\n                }\n            ],\n            \"code\": \"COMPLE36\",\n            \"name\": \"DStv Compact Plus\",\n            \"description\": \" \"\n        },\n        {\n            \"availablePricingOptions\": [\n                {\n                    \"monthsPaidFor\": 1,\n                    \"price\": 18400,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 2,\n                    \"price\": 36800,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 3,\n                    \"price\": 55200,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 4,\n                    \"price\": 73600,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 5,\n                    \"price\": 92000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 6,\n                    \"price\": 110400,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 7,\n                    \"price\": 128800,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 8,\n                    \"price\": 147200,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 9,\n                    \"price\": 165600,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 10,\n                    \"price\": 184000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 12,\n                    \"price\": 202400,\n                    \"invoicePeriod\": 12\n                }\n            ],\n            \"code\": \"PRWE36\",\n            \"name\": \"DStv Premium\",\n            \"description\": \" \"\n        },\n        {\n            \"availablePricingOptions\": [\n                {\n                    \"monthsPaidFor\": 1,\n                    \"price\": 20500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 2,\n                    \"price\": 41000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 3,\n                    \"price\": 61500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 4,\n                    \"price\": 82000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 5,\n                    \"price\": 102500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 6,\n                    \"price\": 123000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 7,\n                    \"price\": 143500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 8,\n                    \"price\": 164000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 9,\n                    \"price\": 184500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 10,\n                    \"price\": 205000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 12,\n                    \"price\": 225500,\n                    \"invoicePeriod\": 12\n                }\n            ],\n            \"code\": \"PRWASIE36\",\n            \"name\": \"DStv Premium Asia\",\n            \"description\": \" \"\n        },\n        {\n            \"availablePricingOptions\": [\n                {\n                    \"monthsPaidFor\": 1,\n                    \"price\": 6200,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 2,\n                    \"price\": 12400,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 3,\n                    \"price\": 18600,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 4,\n                    \"price\": 24800,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 5,\n                    \"price\": 31000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 6,\n                    \"price\": 37200,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 7,\n                    \"price\": 43400,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 8,\n                    \"price\": 49600,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 9,\n                    \"price\": 55800,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 10,\n                    \"price\": 62000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 12,\n                    \"price\": 68200,\n                    \"invoicePeriod\": 12\n                }\n            ],\n            \"code\": \"ASIAE36\",\n            \"name\": \"Asian Bouqet\",\n            \"description\": \" \"\n        },\n        {\n            \"availablePricingOptions\": [\n                {\n                    \"monthsPaidFor\": 1,\n                    \"price\": 2565,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 2,\n                    \"price\": 5130,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 3,\n                    \"price\": 7695,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 4,\n                    \"price\": 10260,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 5,\n                    \"price\": 12825,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 6,\n                    \"price\": 15390,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 7,\n                    \"price\": 17955,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 8,\n                    \"price\": 20520,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 9,\n                    \"price\": 23085,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 10,\n                    \"price\": 25650,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 12,\n                    \"price\": 28215,\n                    \"invoicePeriod\": 12\n                }\n            ],\n            \"code\": \"NNJ1E36\",\n            \"name\": \"DStv Yanga Bouquet E36\",\n            \"description\": \" \"\n        },\n        {\n            \"availablePricingOptions\": [\n                {\n                    \"monthsPaidFor\": 1,\n                    \"price\": 4615,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 2,\n                    \"price\": 9230,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 3,\n                    \"price\": 13845,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 4,\n                    \"price\": 18460,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 5,\n                    \"price\": 23075,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 6,\n                    \"price\": 27690,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 7,\n                    \"price\": 32305,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 8,\n                    \"price\": 36920,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 9,\n                    \"price\": 41535,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 10,\n                    \"price\": 46150,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 12,\n                    \"price\": 50765,\n                    \"invoicePeriod\": 12\n                }\n            ],\n            \"code\": \"NNJ2E36\",\n            \"name\": \"DStv Confam Bouquet E36\",\n            \"description\": \" \"\n        }\n    ]\n}"}],"_postman_id":"282c39f5-93d1-49b2-af74-2feffb35896e"},{"name":"Get Bouquets Addons","id":"55f21ff7-a8d2-41e6-94e0-9dfb1e54baab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{access_token}}"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"product_code\": \"PRWFRNSE36\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/multichoice/addons","description":"<p>This endpoint allows user to verify meter number and initiate transaction</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Authenticated User</li>\n</ul>\n<h6 id=\"request-information\">Request Information</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>product_code</td>\n<td>string</td>\n<td>product code of the selected bouquets</td>\n<td>M</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["multichoice","addons"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"08ec7ada-b9bb-427f-b5d6-0563c0edcaea","name":"Get Bouquets Addons Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{access_token}}"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"product_code\": \"PRWFRNSE36\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/multichoice/addons"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 03:18:27 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 03:18:27 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Success\",\n    \"data\": [\n        {\n            \"availablePricingOptions\": [\n                {\n                    \"monthsPaidFor\": 1,\n                    \"price\": 2500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 2,\n                    \"price\": 5000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 3,\n                    \"price\": 7500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 4,\n                    \"price\": 10000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 5,\n                    \"price\": 12500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 6,\n                    \"price\": 15000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 7,\n                    \"price\": 17500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 8,\n                    \"price\": 20000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 9,\n                    \"price\": 22500,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 10,\n                    \"price\": 25000,\n                    \"invoicePeriod\": 1\n                },\n                {\n                    \"monthsPaidFor\": 12,\n                    \"price\": 27500,\n                    \"invoicePeriod\": 12\n                }\n            ],\n            \"code\": \"HDPVRE36\",\n            \"name\": \"HDPVR/XtraView\",\n            \"description\": \" \"\n        }\n    ]\n}"}],"_postman_id":"55f21ff7-a8d2-41e6-94e0-9dfb1e54baab"},{"name":"Subscribe","id":"a3baf390-8be6-44a2-a51b-5b2afe049dd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"amount\": 18400,\n    \"product_months_paid_for\": \"1\",\n    \"product_code\": \"PRWE36\",\n    \"smartcard_number\": \"4131953321\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/multichoice/subscribe","description":"<p>This endpoint enables user to purchase a cable tv subscription</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Authenticated User</li>\n</ul>\n<h1 id=\"request-information\">Request Information</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>Mandatory(M)/Optional(O)</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>amount</td>\n<td>string</td>\n<td>amount user wishes to pay</td>\n<td>M</td>\n</tr>\n<tr>\n<td>addon_months_paid_for</td>\n<td>string</td>\n<td>number of months selected for the addons subscription</td>\n<td>O</td>\n</tr>\n<tr>\n<td>addon_code</td>\n<td>string</td>\n<td>code of the selected addon</td>\n<td>O</td>\n</tr>\n<tr>\n<td>product_months_paid_for</td>\n<td>string</td>\n<td>number of months selected for the bouquets subscription</td>\n<td>M</td>\n</tr>\n<tr>\n<td>product_code</td>\n<td>string</td>\n<td>code of the selected bouquet</td>\n<td>M</td>\n</tr>\n<tr>\n<td>smartcard_number</td>\n<td>string</td>\n<td>smart card number on which subscription will be recharged</td>\n<td>M</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["multichoice","subscribe"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0ed9b7c8-2d18-4f9d-bfee-0247214d00b3","name":"Subscribe amount limit","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"amount\": 202400,\n    \"product_months_paid_for\": \"12\",\n    \"product_code\": \"PRWE36\",\n    \"smartcard_number\": \"4131953321\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/multichoice/subscribe"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 11:26:29 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 11:26:29 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"error\",\n    \"data\": {\n        \"status\": \"error\",\n        \"message\": \"Requested amount 202400 will cause breach of limit 0.\",\n        \"code\": \"EXC00102\",\n        \"errors\": {\n            \"code\": \"EXC00102\",\n            \"message\": \"Requested amount 202400 will cause breach of limit 0.\"\n        }\n    }\n}"},{"id":"6771687a-f613-41ab-8847-fa8a7d3d12af","name":"Subscribe Error","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"amount\": 12500,\n    \"addon_months_paid_for\": \"\",\n    \"addon_code\": \"\",\n    \"product_months_paid_for\": \"5\",\n    \"product_code\": \"PRWFRNSE36\",\n    \"smartcard_number\": \"4131953321\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/multichoice/subscribe"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 03:25:51 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 03:25:51 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"error\",\n    \"data\": {\n        \"status\": \"error\",\n        \"message\": \"Total amount sent does not match the total price of the bouquets selected\",\n        \"code\": \"BX0020\",\n        \"errors\": {\n            \"status\": \"BX0020\",\n            \"message\": \"Total amount sent does not match the total price of the bouquets selected\"\n        }\n    }\n}"},{"id":"b4d82c7d-fba6-495d-bb97-6ad74edc4197","name":"Subscribe Suceess","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"amount\": 18400,\n    \"product_months_paid_for\": \"1\",\n    \"product_code\": \"PRWE36\",\n    \"smartcard_number\": \"4131953321\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/multichoice/subscribe"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 11:28:10 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 11:28:10 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Cable TV Subcription successful\",\n    \"data\": {\n        \"id\": \"384425\",\n        \"reference\": \"ARF-533284384799\",\n        \"service_type\": \"dstv\",\n        \"user_id\": 707032,\n        \"updated_at\": \"2020-09-22T11:28:10.000000Z\",\n        \"created_at\": \"2020-09-22T11:28:02.000000Z\",\n        \"transaction_status\": \"success\",\n        \"amount\": 18400,\n        \"smartcard_number\": \"4131953321\",\n        \"transaction_description\": \"Cable TV Subcription successful\",\n        \"transaction_code\": \"0\",\n        \"addon_months_paid_for\": null,\n        \"product_months_paid_for\": \"1\",\n        \"addon_code\": null,\n        \"product_code\": \"PRWE36\",\n        \"type\": null,\n        \"status\": \"successful\"\n    }\n}"}],"_postman_id":"a3baf390-8be6-44a2-a51b-5b2afe049dd2"}],"id":"980737c5-aab0-45a2-9f3c-ffee1b81f52f","description":"<p>DSTV Subscription Endpoints</p>\n","event":[{"listen":"prerequest","script":{"id":"11cf8687-a8be-4a50-9950-61260d1f8bba","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ef940083-9eb3-40a2-96eb-7624f91e36fd","type":"text/javascript","exec":[""]}}],"_postman_id":"980737c5-aab0-45a2-9f3c-ffee1b81f52f"}],"id":"9229bd18-c6d5-4983-b14d-32d0e96631f2","description":"<p>This section provides endpoint for <code>Electricity Bill</code> and <code>Cable TV (DSTV)</code> subscription.</p>\n","event":[{"listen":"prerequest","script":{"id":"f4a86e74-2800-4151-860c-74a4b8da35b7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d9622412-34d4-4855-aae6-acc0612fb0f0","type":"text/javascript","exec":[""]}}],"_postman_id":"9229bd18-c6d5-4983-b14d-32d0e96631f2"},{"name":"Transaction History","item":[{"name":"Transactions","id":"4d98d4ca-ae0e-471c-a856-c1b573d02b25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"url":"{{url}}/transactions","description":"<p>This endpoint provides transaction history of a user</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Authenticated user</li>\n</ul>\n","urlObject":{"path":["transactions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6a55486a-483d-4543-858f-55a868aa0b52","name":"Transactions Success","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"url":"{{url}}/transactions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 01:59:41 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 01:59:41 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"id\": 157324,\n            \"reference\": \"ARF-495738157763\",\n            \"amount\": \"0.00\",\n            \"user_id\": 466481,\n            \"name\": \"BELLO MUHAMMED\",\n            \"phone_number\": null,\n            \"meter_number\": \"04171254347\",\n            \"address\": \"AFTER MATAWALLE AMADU  (UNIT 1, POLE NO. 42)\",\n            \"service_type\": \"kaduna_electric_prepaid\",\n            \"outstanding_balance\": \"\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T01:31:15.000000Z\",\n            \"updated_at\": \"2020-09-22T01:31:15.000000Z\"\n        }\n    ]\n}"},{"id":"f4603f6a-10e6-4728-b301-5cde7a23faca","name":"Transactions ","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"url":"{{url}}/transactions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 10:16:57 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 10:16:57 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"id\": 834893,\n            \"reference\": \"ARF-527954835505\",\n            \"baxi_reference\": null,\n            \"amount\": \"20000.00\",\n            \"user_id\": 707032,\n            \"name\": \"SUNDAY AGAGARAGA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"SHOLAJA ST, VICTORY EST, 5A, IBA\",\n            \"service_type\": \"eko_electric_prepaid\",\n            \"outstanding_balance\": \"\",\n            \"token_code\": \"45307113586560330724\",\n            \"token_amount\": \"20000\",\n            \"amount_of_power\": null,\n            \"transaction_code\": \"0\",\n            \"transaction_description\": \"Successful\",\n            \"transaction_status\": \"success\",\n            \"created_at\": \"2020-09-22T10:03:19.000000Z\",\n            \"updated_at\": \"2020-09-22T10:13:32.000000Z\",\n            \"type\": \"Prepaid\",\n            \"status\": \"successful\"\n        },\n        {\n            \"id\": 184808,\n            \"reference\": \"ARF-528483185855\",\n            \"baxi_reference\": null,\n            \"amount\": \"20000.00\",\n            \"user_id\": 707032,\n            \"name\": \"SUNDAY AGAGARAGA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"SHOLAJA ST, VICTORY EST, 5A, IBA\",\n            \"service_type\": \"eko_electric_prepaid\",\n            \"outstanding_balance\": \"\",\n            \"token_code\": null,\n            \"token_amount\": \"20000\",\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": \"Kindly requery transaction status\",\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T10:11:43.000000Z\",\n            \"updated_at\": \"2020-09-22T10:12:02.000000Z\",\n            \"type\": \"Prepaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 932062,\n            \"reference\": \"ARF-526777932777\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"SUNDAY AGAGARAGA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"SHOLAJA ST, VICTORY EST, 5A, IBA\",\n            \"service_type\": \"eko_electric_prepaid\",\n            \"outstanding_balance\": \"\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:44:37.000000Z\",\n            \"updated_at\": \"2020-09-22T09:44:37.000000Z\",\n            \"type\": \"Prepaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 770436,\n            \"reference\": \"ARF-526693770906\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"SUNDAY AGAGARAGA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"SHOLAJA ST, VICTORY EST, 5A, IBA\",\n            \"service_type\": \"eko_electric_prepaid\",\n            \"outstanding_balance\": \"\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:43:17.000000Z\",\n            \"updated_at\": \"2020-09-22T09:43:17.000000Z\",\n            \"type\": \"Prepaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 178694,\n            \"reference\": \"ARF-526060179266\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"SUNDAY AGAGARAGA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"SHOLAJA ST, VICTORY EST, 5A, IBA\",\n            \"service_type\": \"eko_electric_prepaid\",\n            \"outstanding_balance\": \"\",\n            \"token_code\": \"98094904848325866847\",\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": \"0\",\n            \"transaction_description\": \"Successful\",\n            \"transaction_status\": \"success\",\n            \"created_at\": \"2020-09-22T09:33:13.000000Z\",\n            \"updated_at\": \"2020-09-22T09:43:02.000000Z\",\n            \"type\": \"Prepaid\",\n            \"status\": \"successful\"\n        },\n        {\n            \"id\": 246148,\n            \"reference\": \"ARF-526020247277\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"SUNDAY AGAGARAGA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"SHOLAJA ST, VICTORY EST, 5A, IBA\",\n            \"service_type\": \"eko_electric_prepaid\",\n            \"outstanding_balance\": \"\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:32:34.000000Z\",\n            \"updated_at\": \"2020-09-22T09:32:34.000000Z\",\n            \"type\": \"Prepaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 279272,\n            \"reference\": \"ARF-525892279684\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"TESTMETER1\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"ABULE - EGBA BU ABULE\",\n            \"service_type\": \"ikeja_electric_prepaid\",\n            \"outstanding_balance\": \"\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:30:32.000000Z\",\n            \"updated_at\": \"2020-09-22T09:30:32.000000Z\",\n            \"type\": \"Prepaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 271758,\n            \"reference\": \"ARF-525879272393\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"TESTMETER1\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"ABULE - EGBA BU ABULE\",\n            \"service_type\": \"ikeja_electric_prepaid\",\n            \"outstanding_balance\": \"\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:30:20.000000Z\",\n            \"updated_at\": \"2020-09-22T09:30:20.000000Z\",\n            \"type\": \"Prepaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 768844,\n            \"reference\": \"ARF-525698769394\",\n            \"baxi_reference\": null,\n            \"amount\": \"20000.00\",\n            \"user_id\": 707032,\n            \"name\": \"TESTMETER1\",\n            \"phone_number\": \"08078780858\",\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"ABULE - EGBA BU ABULE\",\n            \"service_type\": \"ikeja_electric_prepaid\",\n            \"outstanding_balance\": \"\",\n            \"token_code\": \"93969729775435740649\",\n            \"token_amount\": \"20000\",\n            \"amount_of_power\": \"20000 kWh\",\n            \"transaction_code\": \"0\",\n            \"transaction_description\": \"Payment Successful\",\n            \"transaction_status\": \"success\",\n            \"created_at\": \"2020-09-22T09:27:28.000000Z\",\n            \"updated_at\": \"2020-09-22T09:27:44.000000Z\",\n            \"type\": \"Prepaid\",\n            \"status\": \"successful\"\n        },\n        {\n            \"id\": 470855,\n            \"reference\": \"ARF-525620471763\",\n            \"baxi_reference\": null,\n            \"amount\": \"10000.00\",\n            \"user_id\": 707032,\n            \"name\": \"NP NGEMA\",\n            \"phone_number\": \"08078780858\",\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"6 ABIODUN ODESEYE Shomolu BU\",\n            \"service_type\": \"ikeja_electric_postpaid\",\n            \"outstanding_balance\": \"31829\",\n            \"token_code\": null,\n            \"token_amount\": \"10000\",\n            \"amount_of_power\": null,\n            \"transaction_code\": \"0\",\n            \"transaction_description\": \"Payment Successful\",\n            \"transaction_status\": \"success\",\n            \"created_at\": \"2020-09-22T09:26:13.000000Z\",\n            \"updated_at\": \"2020-09-22T09:26:32.000000Z\",\n            \"type\": \"Postpaid\",\n            \"status\": \"successful\"\n        },\n        {\n            \"id\": 389838,\n            \"reference\": \"ARF-525428390249\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"NP NGEMA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"6 ABIODUN ODESEYE Shomolu BU\",\n            \"service_type\": \"ikeja_electric_postpaid\",\n            \"outstanding_balance\": \"31829\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:23:10.000000Z\",\n            \"updated_at\": \"2020-09-22T09:23:10.000000Z\",\n            \"type\": \"Postpaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 364754,\n            \"reference\": \"ARF-525383365462\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"NP NGEMA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"6 ABIODUN ODESEYE Shomolu BU\",\n            \"service_type\": \"ikeja_electric_postpaid\",\n            \"outstanding_balance\": \"31829\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:22:27.000000Z\",\n            \"updated_at\": \"2020-09-22T09:22:27.000000Z\",\n            \"type\": \"Postpaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 271696,\n            \"reference\": \"ARF-525314272157\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"NP NGEMA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"6 ABIODUN ODESEYE Shomolu BU\",\n            \"service_type\": \"ikeja_electric_postpaid\",\n            \"outstanding_balance\": \"31829\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:21:21.000000Z\",\n            \"updated_at\": \"2020-09-22T09:21:21.000000Z\",\n            \"type\": \"Postpaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 828079,\n            \"reference\": \"ARF-525228828693\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"NP NGEMA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"6 ABIODUN ODESEYE Shomolu BU\",\n            \"service_type\": \"ikeja_electric_postpaid\",\n            \"outstanding_balance\": \"31829\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:20:00.000000Z\",\n            \"updated_at\": \"2020-09-22T09:20:00.000000Z\",\n            \"type\": \"Postpaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 30233,\n            \"reference\": \"ARF-525195030772\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"NP NGEMA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"6 ABIODUN ODESEYE Shomolu BU\",\n            \"service_type\": \"ikeja_electric_postpaid\",\n            \"outstanding_balance\": \"31829\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:19:27.000000Z\",\n            \"updated_at\": \"2020-09-22T09:19:27.000000Z\",\n            \"type\": \"Postpaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 718001,\n            \"reference\": \"ARF-525129718532\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"NP NGEMA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"6 ABIODUN ODESEYE Shomolu BU\",\n            \"service_type\": \"ikeja_electric_postpaid\",\n            \"outstanding_balance\": \"31829\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:18:25.000000Z\",\n            \"updated_at\": \"2020-09-22T09:18:25.000000Z\",\n            \"type\": \"Postpaid\",\n            \"status\": \"pending\"\n        },\n        {\n            \"id\": 379633,\n            \"reference\": \"ARF-524505380355\",\n            \"baxi_reference\": null,\n            \"amount\": \"0.00\",\n            \"user_id\": 707032,\n            \"name\": \"NP NGEMA\",\n            \"phone_number\": null,\n            \"meter_number\": \"04042404048\",\n            \"smartcard_number\": null,\n            \"addon_months_paid_for\": null,\n            \"product_months_paid_for\": null,\n            \"addon_code\": null,\n            \"product_code\": null,\n            \"address\": \"6 ABIODUN ODESEYE Shomolu BU\",\n            \"service_type\": \"ikeja_electric_prepaid\",\n            \"outstanding_balance\": \"31829\",\n            \"token_code\": null,\n            \"token_amount\": null,\n            \"amount_of_power\": null,\n            \"transaction_code\": null,\n            \"transaction_description\": null,\n            \"transaction_status\": \"pending\",\n            \"created_at\": \"2020-09-22T09:08:30.000000Z\",\n            \"updated_at\": \"2020-09-22T09:08:30.000000Z\",\n            \"type\": \"Prepaid\",\n            \"status\": \"pending\"\n        }\n    ]\n}"}],"_postman_id":"4d98d4ca-ae0e-471c-a856-c1b573d02b25"},{"name":"Transaction","id":"f66f9c15-2c1e-4c9b-b112-b695331f685f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","value":"{{access_token}}","type":"text"}],"url":"{{url}}/transaction/{{reference}}","description":"<p>This endpoint provides details of a single transaction</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Authenticated User</li>\n</ul>\n<h6 id=\"url-parameter\">Url Parameter</h6>\n<ul>\n<li>reference - transaction reference</li>\n</ul>\n","urlObject":{"path":["transaction","{{reference}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"aed7717d-7c17-46eb-a8cf-c3e7b4a18183","name":"Get Users Success","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","value":"{{access_token}}","type":"text"}],"url":"{{url}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Mon, 21 Sep 2020 21:32:05 GMT"},{"key":"Date","value":"Mon, 21 Sep 2020 21:32:05 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Success.\",\n    \"data\": [\n        {\n            \"id\": 474171,\n            \"first_name\": \"Umar\",\n            \"last_name\": \"Farouq\",\n            \"other_name\": \"Yusuf\",\n            \"email\": \"umar@app.com\",\n            \"phone_number\": \"08078780858\",\n            \"status\": \"active\",\n            \"email_verified_at\": \"2020-09-21T21:02:43.000000Z\",\n            \"created_at\": \"2020-09-21T21:02:43.000000Z\",\n            \"updated_at\": \"2020-09-21T21:30:20.000000Z\",\n            \"full_name\": \"Farouq Umar Yusuf\"\n        },\n        {\n            \"id\": 743467,\n            \"first_name\": \"Umar\",\n            \"last_name\": \"Farouq\",\n            \"other_name\": \"Yusuf\",\n            \"email\": \"umar@gmail.com\",\n            \"phone_number\": \"08078780859\",\n            \"status\": \"active\",\n            \"email_verified_at\": \"2020-09-21T21:16:25.000000Z\",\n            \"created_at\": \"2020-09-21T21:09:21.000000Z\",\n            \"updated_at\": \"2020-09-21T21:16:25.000000Z\",\n            \"full_name\": \"Farouq Umar Yusuf\"\n        }\n    ]\n}"}],"_postman_id":"f66f9c15-2c1e-4c9b-b112-b695331f685f"},{"name":"Requery Transaction","id":"1b01b0e8-37c8-4dd0-ae21-1e5f0a9d4a2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"url":"{{url}}/transaction/requery/{{reference}}","description":"<p>This endpoint allows user to requery pending transaction</p>\n<h6 id=\"access\">Access</h6>\n<ul>\n<li>Authenticated User</li>\n</ul>\n<h6 id=\"url-parameter\">Url Parameter</h6>\n<ul>\n<li>reference - transaction reference</li>\n</ul>\n","urlObject":{"path":["transaction","requery","{{reference}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3f4784ca-b15c-4b7a-a96a-3d87588e8a2d","name":"Requery Transaction Still Pending","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"url":"{{url}}/transaction/requery/{{reference}}"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 11:09:05 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 11:09:05 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"error\",\n    \"data\": {\n        \"status\": \"pending\",\n        \"message\": \"Exchange with transaction number '1429652' is still pending.\",\n        \"code\": \"EXC00114\",\n        \"errors\": []\n    }\n}"},{"id":"42e0ba3a-2739-45b8-8c3a-03a7186e009f","name":"Requery Transaction Success","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"url":"{{url}}/transaction/requery/{{reference}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 09:35:38 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 09:35:38 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"59"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Success\",\n    \"data\": {\n        \"statusCode\": \"0\",\n        \"transactionStatus\": \"success\",\n        \"transactionReference\": 158861,\n        \"transactionMessage\": \"Successful\",\n        \"baxiReference\": \"1429630\",\n        \"pins\": [],\n        \"tokenCode\": \"98094904848325866847\"\n    }\n}"},{"id":"9bf4f83c-33d0-4d17-b776-87b6868a66dd","name":"Requery Transaction  Success","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{access_token}}"}],"url":"{{url}}/transaction/requery/{{reference}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Date","value":"Tue, 22 Sep 2020 03:15:31 GMT"},{"key":"Date","value":"Tue, 22 Sep 2020 03:15:31 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.4.9"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-RateLimit-Limit","value":"60"},{"key":"X-RateLimit-Remaining","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Success\",\n    \"data\": {\n        \"statusCode\": \"0\",\n        \"transactionStatus\": \"success\",\n        \"transactionReference\": 157669,\n        \"transactionMessage\": \"Successful\",\n        \"baxiReference\": \"1429603\",\n        \"pins\": [],\n        \"tokenCode\": \"1330-7675-1474-7868-8410\"\n    }\n}"}],"_postman_id":"1b01b0e8-37c8-4dd0-ae21-1e5f0a9d4a2e"}],"id":"5d2ac714-b3e9-4c2a-a322-a0aff4bad071","description":"<p>This section consists of all endpoint for fetching and requerying user transactions</p>\n","event":[{"listen":"prerequest","script":{"id":"f7348777-7c03-4851-9a80-0552250be144","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"935909f6-68ab-489e-a563-6ae756853676","type":"text/javascript","exec":[""]}}],"_postman_id":"5d2ac714-b3e9-4c2a-a322-a0aff4bad071"}],"event":[{"listen":"prerequest","script":{"id":"198c780b-4eb7-48a2-bc06-628e1ccf9dc9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4b422ca8-9191-4d45-a54a-81531b980bdd","type":"text/javascript","exec":[""]}}]}