{"info":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","description":"<html><head></head><body><img src=\"https://veraciouspay.com/template/images/logo.png\" width=\"431\" height=\"446\">\n\n<h1 id=\"overview\">Overview</h1>\n<p>Welcome to the VeraciousPay Developer API Documentation. This comprehensive guide will empower you to seamlessly integrate our advanced payment gateway into your website, enhancing your customers’ payment experience and enabling efficient transaction processing. The VeraciousPay Developer API is designed for<br>developers and entrepreneurs who seek simplicity, security, and reliability in their payment processing solutions.</p>\n<p>VeraciousPay provides RESTFUL API based on simple HTTP GET/POST requests. Whatever it is you want to build we have made it easy as possible with our APIs and SDKs, documentation as well as other resouces to make you setup in less than 5 minutes.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<ul>\n<li><p>An account must be registered to use the endpoints and resources provided here.</p>\n</li>\n<li><p>This Access token must be included as a custom header, <strong>Authorization Bearer,</strong> when making requests.</p>\n</li>\n<li><p>To get a access token for your app, get in touch with <a href=\"https://veraciouspay.com/\">VeraciousPay</a>.</p>\n</li>\n</ul>\n<h2 id=\"headers\">Headers</h2>\n<p>By default, except stated otherwise, you must include the following headers in each request:</p>\n<ul>\n<li><p><strong>Content-Type</strong>: application/json</p>\n</li>\n<li><p><strong>Accept</strong>: application/json</p>\n</li>\n<li><p><strong>Authorization Bearer</strong> : {{access_token}}</p>\n</li>\n</ul>\n<h2 id=\"http-methods\">HTTP Methods</h2>\n<p>The API support standard HTTP methods as detailed below:</p>\n<ul>\n<li><p><code>GET</code> - For retrieve records</p>\n</li>\n<li><p><code>POST</code> - For creating new records</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Environment</strong></th>\n<th><strong>Base URL</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Production (live mode)</td>\n<td><a href=\"https://veraciouspay.com/api/v1/\">https://veraciouspay.com/api/v1/</a></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Remember</strong> access tokens are long-lived that expire after 5 years.</p>\n<p><strong>Note</strong>: you can get your access token via API Settings [available to agent and super agent only, for now.].</p>\n<h2 id=\"transaction-response\">Transaction Response</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Meaning</strong></th>\n<th><strong>What happened</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Ok</td>\n<td>Everything is fine. You're cleared for take off.</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n<td>You didn't provide a valid Access Token.</td>\n</tr>\n<tr>\n<td>424</td>\n<td>Failed</td>\n<td>Ouch! We couldn't accept this request, you omitted a required parameter or it's an outright failure from us. Don't break a sweat, reconfirm, again.</td>\n</tr>\n<tr>\n<td>429</td>\n<td>Too Many Request</td>\n<td>You're hitting our API too quickly. Pump your breaks, captain.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"transaction-response-format\">Transaction Response Format</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Response Code</strong></th>\n<th><strong>Meaning</strong></th>\n<th><strong>Note</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Processing</td>\n<td>Transaction has been on processing</td>\n<td>Transaction has been on processing. This may happen transaction been on processing and has not be confirmed by the provider</td>\n</tr>\n<tr>\n<td>Completed</td>\n<td>Transaction has been completed</td>\n<td>Transaction is completed and service is confirmed as delivered.</td>\n</tr>\n<tr>\n<td>pending</td>\n<td>Transaction is pending.</td>\n<td>Transaction is pending. This may happen when service provider has not concluded the transaction. This status will be updated. Please requery to get a final status.</td>\n</tr>\n<tr>\n<td>Refunded</td>\n<td>Transaction is refund</td>\n<td>Transaction is refunded. This may happened when transaction was not completed and not delivered to the recipient</td>\n</tr>\n<tr>\n<td>Failed</td>\n<td>Transaction is failed</td>\n<td>Transaction is failed. This may happen when the transaction was unable to completed</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"veraciouspay-webhook\"><strong>VeraciousPay WEBHOOK</strong></h2>\n<p>The VeraciousPay REST APIs use webhooks for transactions notification. Webhooks are HTTP callbacks that contains notification messages for transactions. When you generate an api token, you can create add a webhook url on which you will receive the transactions update notifications.</p>\n<p><strong>SAMPLE PHP CODE TO VERIFY WEBHOOK SIGNATURE</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">if (!function_exists('getallheaders')) {\n    function getallheaders() {\n        $headers = [];\n        foreach ($_SERVER as $name =&gt; $value) {\n            if (substr($name, 0, 5) == 'HTTP_') {\n                $headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] =   $value;\n            }\n        }\n        return $headers;\n    }\n}\n//\n$access_token = \"your veraciouspay access token\"; // api token\n$payload = file_get_contents(\"php://input\"); // payload\n$local_signature = hash_hmac('sha256', $payload, $access_token); // local signature\n//\n// Remote signature\n$headers = getallheaders();\n@$remote_signature = isset($headers['Remote_Signature']) ? $headers['Remote_Signature']:$headers['remote_signature'];\n//\nif ($local_signature === $remote_signature) {\n//verified , continue your code logic\n//\n$data = json_decode($payload, true);\n$api_mode = $data['api_mode']; // api_live;\n$status = $data['status']; // true\n$method = $data['method']; // transaction / data coupon / data storage\n//\n// return transaction data\nif($status == true){\n    $transaction_data = $data['data']['transaction_data'];\n    $our_reference = $transaction_data['reference'];\n    $your_ref = $transaction_data['your_ref'];\n    $status = $transaction_data['status'];\n    $amount_paid = $transaction_data['amount_paid'];\n    $recipient = $transaction_data['recipient'];\n    $package = $transaction_data['package'];\n    $provider = $transaction_data['provider'];\n    $server_response = $transaction_data['server_response'];\n    \n    //meter_token and meter_unit key are null if provider IS NOT meter token\n    $meter_token = $transaction_data['meter_token'];\n    $meter_unit = $transaction_data['meter_unit'];\n  }\n}\n\n</code></pre>\n<h2 id=\"sample-webhook-json-response\"><strong>Sample Webhook JSON Response</strong></h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": true,\n  \"api_mode\": \"{{api_mode}}\",\n  \"method\": \"transaction\",\n  \"data\": {\n    \"transaction_data\": {\n      \"package\": \"{{package}}\",\n      \"provider\": \"{{provider}}\",\n      \"reference\": \"{{reference}}\",\n      \"your_ref\": \"{{your_ref}}\",\n      \"status\": \"{{status}}\",\n      \"recipient\": \"0806*******\",\n      \"amount_paid\": \"{{amount_paid}}\",\n      \"meter_token\": \"{{meter_token}}\",\n      \"meter_unit\": \"{{meter_unit}}\",\n      \"server_response\": \"{{server_response}}\"\n    }\n  }\n}\n\n</code></pre>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"}],"owner":"9698276","collectionId":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","publishedId":"2s93eU2Dqk","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-05-01T18:01:04.000Z"},"item":[{"name":"Data Bundle","item":[{"name":"Local","item":[{"name":"Get Data Bundle Providers","id":"5db46438-66db-43b2-ba5a-102c022588f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Data Bunble Provider 1\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\"\n    },\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Data Bunble Provider 2\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/data-bundle","description":"<p>This request consist of available Data Bundle providers. Please note the unique <strong>provider_code</strong> of each provider, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","data-bundle"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4eaf84f6-2538-43e7-b813-3aeef100f224","name":"Get Data Bundle Providers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"{{baseUrl}}/api/v1/data-bundle"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 05:38:38 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"266"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Data Bunble Provider 1\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\"\n    },\n    {\n        \"provider_image\": \"image\",\n      \"provider_name\": \"Data Bunble Provider 2\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\"\n    }\n  ]\n}"}],"_postman_id":"5db46438-66db-43b2-ba5a-102c022588f1"},{"name":"Get Data Bundle Packages","id":"d1b5be5e-a172-4603-9f4c-0959f560a07f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Data Bundle Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Data Bundle Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/packages","description":"<p>This request consist of available packages for Data Bundle. Please note the unique package code of each package, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","packages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bd3427b8-be3f-4780-8c09-3cf5bf63fb79","name":"Get Data Bundle Packages","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"provider_code","value":"{{provider_code}}","type":"text"}]},"url":"{{baseUrl}}/api/v1/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 06:07:18 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"294"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Data Bundle Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Data Bundle Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}"}],"_postman_id":"d1b5be5e-a172-4603-9f4c-0959f560a07f"},{"name":"Buy Data Bundle","id":"461cf0d3-02df-4fde-a7a8-677171f37e65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"method\": \"{{method}}\",\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy","description":"<p>This request endpoint enables you to buy Data Bundle.</p>\n<p>Below are the request body parameters :</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>recipient</strong> -- Recipient</p>\n<p><strong>package_code</strong> -- Package code</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>isPorted</strong> -- If recipient number is a ported line (yes or no. no is default)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","buy"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6b7b6430-3c68-46c5-b8b9-c9889d02275b","name":"Buy Data Bundle","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"recipient","value":"","type":"text"},{"key":"package_code","value":"","type":"text"},{"key":"reference","value":"","type":"text"}]},"url":"{{baseUrl}}/api/v1/buy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 07:17:05 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"105"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"461cf0d3-02df-4fde-a7a8-677171f37e65"}],"id":"c13a983c-147c-4a78-8071-1389b56da849","_postman_id":"c13a983c-147c-4a78-8071-1389b56da849","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"International","item":[{"name":"Countries","id":"34a82dad-31ad-447b-9464-674d589d9f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"status_code\": 200,\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"country_flag\": \"{{country_flag}}\",\n            \"country_name\": \"{{country_name}}\",\n            \"country_code\": \"{{country_code}}\"\n        },\n        {\n            \"country_flag\": \"{{country_flag}}\",\n            \"country_name\": \"{{country_name}}\",\n            \"country_code\": \"{{country_code}}\"\n        }\n    \n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/countries","description":"<p>This request consist of available Countries. Please note the unique <strong>country_code</strong> of each provider, you will need it to perform subsequent transactions</p>\n","urlObject":{"path":["api","v1","countries"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bb40eca4-3204-4729-8d5f-0abc578dd76a","name":"Countries","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{ access_token }}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 09:10:45 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://veraciouspay.com"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Content-Security-Policy","value":"default-src 'self';"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"max-age=0"},{"key":"Referrer-Policy","value":"no-referrer, strict-origin-when-cross-origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=4Ke47VSi2EMXfNQh3hWrkipYRd6P6X6uuAFHaX%2FUCp7g9zAjNqDkUDMEBtbGkjRVnq43ZaPlKD61yY%2FSez4%2FdfDqv6GMT3Umv%2FgVJe6EbSM50wCBjrB1tbgPTTTTwDZc7cNk\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"87df1e9e7c942a19-CDG"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": 200,\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"country_flag\": \"{{country_flag}}\",\n            \"country_name\": \"{{country_name}}\",\n            \"country_code\": \"{{country_code}}\"\n        },\n        {\n            \"country_flag\": \"{{country_flag}}\",\n            \"country_name\": \"{{country_name}}\",\n            \"country_code\": \"{{country_code}}\"\n        }\n    \n    ]\n}"}],"_postman_id":"34a82dad-31ad-447b-9464-674d589d9f49"},{"name":"Get Data Bundle Providers","id":"b0c5267b-042f-4e16-9a26-f82d88abe58d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"country_code","value":"GH","type":"text"}]},"url":"{{baseUrl}}/api/v1/international-data-bundle","description":"<p>This request consist of available airtime providers. Please note the unique provider code of each provider, you will need it to<br />perform subsequent transactions</p>\n","urlObject":{"path":["api","v1","international-data-bundle"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"93ea11df-e2e9-4f03-ab0d-75e4913af052","name":"Get Airtime Providers","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"country_code","value":"{{country_code}}","type":"text"}]},"url":"{{baseUrl}}/api/v1/international-data-bundle"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": 200,\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_image\": \"{{provider_image}}\",\n            \"country_code\": \"{{country_code}}\",\n            \"provider_name\": \"{{provider_name}}\",\n            \"provider_code\": \"{{provider_code}}\",\n            \"min_amount\": \"{{min_amount}}\",\n            \"max_amount\": \"{{max_amount}}\",\n            \"percentage\": \"{{percentage}}\",\n            \"provider_info\": \"{{provider_info}}\"\n        },\n        {\n            \"provider_image\": \"{{provider_image}}\",\n            \"country_code\": \"{{country_code}}\",\n            \"provider_name\": \"{{provider_name}}\",\n            \"provider_code\": \"{{provider_code}}\",\n            \"min_amount\": \"{{min_amount}}\",\n            \"max_amount\": \"{{max_amount}}\",\n            \"percentage\": \"{{percentage}}\",\n            \"provider_info\": \"{{provider_info}}\"\n        }\n    ]\n}"}],"_postman_id":"b0c5267b-042f-4e16-9a26-f82d88abe58d"},{"name":"Get Data Bundle Packages","id":"d576e03b-677a-477c-891d-4c3b732d095e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Data Bundle Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Data Bundle Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/packages","description":"<p>This request consist of available packages for Data Bundle. Please note the unique package code of each package, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","packages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7f8999cc-8cba-43c4-8921-00392d2b7fac","name":"Get Data Bundle Packages","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"provider_code","value":"{{provider_code}}","type":"text"}]},"url":"{{baseUrl}}/api/v1/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 06:07:18 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"294"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Data Bundle Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Data Bundle Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}"}],"_postman_id":"d576e03b-677a-477c-891d-4c3b732d095e"},{"name":"Buy Data Bundle","id":"1147accf-5cac-4f78-91f4-2072ff4c2025","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"method\": \"{{method}}\",\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy","description":"<p>This request endpoint enables you to buy Data Bundle.</p>\n<p>Below are the request body parameters :</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>recipient</strong> -- Recipient</p>\n<p><strong>package_code</strong> -- Package code</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>isPorted</strong> -- If recipient number is a ported line (yes or no. no is default)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","buy"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"23d878e1-843a-4511-aaf2-c55ca9031bdb","name":"Buy Data Bundle","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"recipient","value":"","type":"text"},{"key":"package_code","value":"","type":"text"},{"key":"reference","value":"","type":"text"}]},"url":"{{baseUrl}}/api/v1/buy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 07:17:05 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"105"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"1147accf-5cac-4f78-91f4-2072ff4c2025"}],"id":"6bdd3e83-9042-4ea0-a165-991f65c4e1d8","_postman_id":"6bdd3e83-9042-4ea0-a165-991f65c4e1d8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}}],"id":"664ae9c3-6e93-4148-aab7-4d31c5c97c51","event":[{"listen":"prerequest","script":{"id":"ed60ffe3-553f-4fa0-b39e-b45fe6c73889","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9f397cae-6fe3-482f-aa00-9678d15e5b49","type":"text/javascript","exec":[""]}}],"_postman_id":"664ae9c3-6e93-4148-aab7-4d31c5c97c51","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Airtime TopUp","item":[{"name":"Local","item":[{"name":"ePin","item":[{"name":"Get Airtime ePin Providers","id":"4732634d-b975-4b52-b209-683ec26e0dc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Airtime Provider 1\",\n      \"provider_code\": \"uniqiue_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\",\n      \"provider_info\" : \"provider_info\"\n    },\n    {\n    \"provider_image\": \"image\",\n      \"provider_name\": \"Airtime Provider 2\",\n      \"provider_code\": \"uniqiue_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\",\n      \"provider_info\" : \"provider_info\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://veraciouspay.com/api/v1/airtime-topup-epin","description":"<p>This request consist of available airtime epin providers. Please note the unique provider code of each provider, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","airtime-topup-epin"],"host":["veraciouspay","com"],"query":[],"variable":[]}},"response":[{"id":"b2c885ed-d99d-4aff-bfea-e61284a5ee4b","name":"Get Airtime Providers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"https://veraciouspay.com/api/v1/airtime-topup-epin"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 07:27:00 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"492"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Airtime Provider 1\",\n            \"provider_code\": \"uniqiue_provider_code\",\n             \"min_amount\" : \"min_amount\",\n            \"max_amount\" : \"max_amount\",\n            \"provider_info\" : \"provider_info\"\n        },\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Airtime Provider 2\",\n            \"provider_code\": \"uniqiue_provider_code\",\n            \"min_amount\" : \"min_amount\",\n            \"max_amount\" : \"max_amount\",\n            \"provider_info\" : \"provider_info\"\n        }\n    ]\n}"}],"_postman_id":"4732634d-b975-4b52-b209-683ec26e0dc3"},{"name":"Buy Airtime TopUp ePin","id":"1dccb5ed-dc89-4831-a5ba-fb668ac36f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"{{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":" \"status\": true,\n    \"method\": \"{{method}}\",\n    \"api_mode\" : {{\"api_mode\"}}\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://veraciouspay.com/api/v1/buy","description":"<p>This request endpoint enables you to buy Airtime TopUp.</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>recipient</strong> -- Recipient</p>\n<p><strong>amount</strong> -- Amount</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","buy"],"host":["veraciouspay","com"],"query":[],"variable":[]}},"response":[{"id":"70695338-26df-499f-9bed-c00676beabeb","name":"Buy Airtime TopUp","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{access_token}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"","type":"text"},{"key":"recipient","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"amount","value":"","type":"text"},{"key":"reference","value":"","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"https://veraciouspay.com/api/v1/buy"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"1dccb5ed-dc89-4831-a5ba-fb668ac36f49"},{"name":"Get Airtime ePin Packages (For Airtime ePin Providers With Packages)","id":"21da66c6-8d9e-4dcf-969d-37273c3bd06a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Airtime TopUp Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Airtime TopUp Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://veraciouspay.com/api/v1/packages","description":"<p>This request consist of available packages for Airtime providers that have<br />packages for example GLO AWUF. Please note the unique package code of<br />each package, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","packages"],"host":["veraciouspay","com"],"query":[],"variable":[]}},"response":[{"id":"18d507dc-a63f-454e-848f-c8b8a3d4f7aa","name":"Get Airtime Packages (For Airtime Providers With Packages)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"provider_code","value":"{{provider_code}}","type":"text"}]},"url":"https://veraciouspay.com/api/v1/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 06:07:18 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"294"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Airtime TopUp Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Airtime TopUp Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}"}],"_postman_id":"21da66c6-8d9e-4dcf-969d-37273c3bd06a"}],"id":"8d5656a6-5936-494d-a0f7-4606ce92e6bb","_postman_id":"8d5656a6-5936-494d-a0f7-4606ce92e6bb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Get Airtime Providers","id":"cfaba075-0618-4063-91b8-5a7949a7394c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Airtime Provider 1\",\n      \"provider_code\": \"uniqiue_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\",\n      \"provider_info\" : \"provider_info\"\n    },\n    {\n    \"provider_image\": \"image\",\n      \"provider_name\": \"Airtime Provider 2\",\n      \"provider_code\": \"uniqiue_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\",\n      \"provider_info\" : \"provider_info\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/airtime-topup","description":"<p>This request consist of available airtime providers. Please note the unique provider code of each provider, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","airtime-topup"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"71edeee5-f949-47d9-8615-54f6bc3f9b4c","name":"Get Airtime Providers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"{{baseUrl}}/api/v1/airtime-topup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 07:27:00 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"492"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Airtime Provider 1\",\n            \"provider_code\": \"uniqiue_provider_code\",\n             \"min_amount\" : \"min_amount\",\n            \"max_amount\" : \"max_amount\",\n            \"provider_info\" : \"provider_info\"\n        },\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Airtime Provider 2\",\n            \"provider_code\": \"uniqiue_provider_code\",\n            \"min_amount\" : \"min_amount\",\n            \"max_amount\" : \"max_amount\",\n            \"provider_info\" : \"provider_info\"\n        }\n    ]\n}"}],"_postman_id":"cfaba075-0618-4063-91b8-5a7949a7394c"},{"name":"Get Airtime Awuf Providers","id":"082b1c70-3715-49a0-acfc-1844808089ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Airtime Awuf Provider 1\",\n      \"provider_code\": \"uniqiue_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\",\n      \"provider_info\" : \"provider_info\"\n    },\n    {\n    \"provider_image\": \"image\",\n      \"provider_name\": \"Airtime Awuf Provider 2\",\n      \"provider_code\": \"uniqiue_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\",\n      \"provider_info\" : \"provider_info\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/airtime-topup-awuf","description":"<p>This request consist of available airtime awuf providers. Please note the unique<br />provider code of each provider, you will need it to perform subsequent<br />transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","airtime-topup-awuf"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f8ffdf74-2d2f-4857-99be-132b1de899e1","name":"Get Airtime Awuf Providers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"{{baseUrl}}/api/v1/airtime-topup-awuf"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 07:27:00 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"492"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Airtime Awuf Provider 1\",\n            \"provider_code\": \"uniqiue_provider_code\",\n             \"min_amount\" : \"min_amount\",\n            \"max_amount\" : \"max_amount\",\n            \"provider_info\" : \"provider_info\"\n        },\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Airtime Awuf Provider 2\",\n            \"provider_code\": \"uniqiue_provider_code\",\n            \"min_amount\" : \"min_amount\",\n            \"max_amount\" : \"max_amount\",\n            \"provider_info\" : \"provider_info\"\n        }\n    ]\n}"}],"_postman_id":"082b1c70-3715-49a0-acfc-1844808089ff"},{"name":"Get Airtime Packages (For Airtime Providers With Packages)","id":"7aa7946e-b63b-4411-b5ef-f77fd743d8ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Airtime TopUp Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Airtime TopUp Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/packages","description":"<p>This request consist of available packages for Airtime providers that have<br />packages for example GLO AWUF. Please note the unique package code of<br />each package, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","packages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"cb784c0b-a4e0-4c77-a509-1668a8a34ad7","name":"Get Airtime Packages (For Airtime Providers With Packages)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"provider_code","value":"{{provider_code}}","type":"text"}]},"url":"{{baseUrl}}/api/v1/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 06:07:18 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"294"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Airtime TopUp Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Airtime TopUp Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}"}],"_postman_id":"7aa7946e-b63b-4411-b5ef-f77fd743d8ee"},{"name":"Buy Airtime TopUp","id":"a9fd14a9-b02f-456b-a808-38512461af7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"{{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseUrl}}/api/v1/buy","description":"<p>This request endpoint enables you to buy Airtime TopUp.</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>recipient</strong> -- Recipient</p>\n<p><strong>amount</strong> -- Amount</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n","urlObject":{"path":["api","v1","buy"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"62af2207-b67f-4f23-a74d-d34ecb27ac3e","name":"Buy Airtime TopUp","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"","type":"text"},{"key":"recipient","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"amount","value":"","type":"text"},{"key":"reference","value":"","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"a9fd14a9-b02f-456b-a808-38512461af7f"}],"id":"025bf023-f7c7-44ba-95eb-3fafc7f6e2a9","_postman_id":"025bf023-f7c7-44ba-95eb-3fafc7f6e2a9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"International","item":[{"name":"Countries","id":"eaf262d6-e88e-4f90-b0ab-fd09a82b6552","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"status_code\": 200,\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"country_flag\": \"{{country_flag}}\",\n            \"country_name\": \"{{country_name}}\",\n            \"country_code\": \"{{country_code}}\"\n        },\n        {\n            \"country_flag\": \"{{country_flag}}\",\n            \"country_name\": \"{{country_name}}\",\n            \"country_code\": \"{{country_code}}\"\n        }\n    \n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/countries","description":"<p>This request consist of available Countries. Please note the unique <strong>country_code</strong> of each provider, you will need it to perform subsequent transactions</p>\n","urlObject":{"path":["api","v1","countries"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f3bd29f2-7f21-4b40-9dbc-1d829ac9046b","name":"Countries","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{ access_token }}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 09:10:45 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"https://veraciouspay.com"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"GET,POST,PUT,DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Content-Security-Policy","value":"default-src 'self';"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"max-age=0"},{"key":"Referrer-Policy","value":"no-referrer, strict-origin-when-cross-origin"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=4Ke47VSi2EMXfNQh3hWrkipYRd6P6X6uuAFHaX%2FUCp7g9zAjNqDkUDMEBtbGkjRVnq43ZaPlKD61yY%2FSez4%2FdfDqv6GMT3Umv%2FgVJe6EbSM50wCBjrB1tbgPTTTTwDZc7cNk\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"87df1e9e7c942a19-CDG"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": 200,\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"country_flag\": \"{{country_flag}}\",\n            \"country_name\": \"{{country_name}}\",\n            \"country_code\": \"{{country_code}}\"\n        },\n        {\n            \"country_flag\": \"{{country_flag}}\",\n            \"country_name\": \"{{country_name}}\",\n            \"country_code\": \"{{country_code}}\"\n        }\n    \n    ]\n}"}],"_postman_id":"eaf262d6-e88e-4f90-b0ab-fd09a82b6552"},{"name":"Get Airtime Providers","id":"ba55e75e-b7ae-4527-9168-7a66421c5062","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"country_code","value":"GH","type":"text","disabled":true}]},"url":"{{baseUrl}}/api/v1/international-airtime-topup","description":"<p>This request consist of available airtime providers. Please note the unique provider code of each provider, you will need it to<br />perform subsequent transactions</p>\n","urlObject":{"path":["api","v1","international-airtime-topup"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"12b57183-4d40-4412-8d17-9a758e4386f8","name":"Get Airtime Providers","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"country_code","value":"{{country_code}}","type":"text"}]},"url":"{{baseUrl}}/api/v1/international-airtime-topup"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": 200,\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_image\": \"{{provider_image}}\",\n            \"country_code\": \"{{country_code}}\",\n            \"provider_name\": \"{{provider_name}}\",\n            \"provider_code\": \"{{provider_code}}\",\n            \"min_amount\": \"{{min_amount}}\",\n            \"max_amount\": \"{{max_amount}}\",\n            \"percentage\": \"{{percentage}}\",\n            \"provider_info\": \"{{provider_info}}\"\n        },\n        {\n            \"provider_image\": \"{{provider_image}}\",\n            \"country_code\": \"{{country_code}}\",\n            \"provider_name\": \"{{provider_name}}\",\n            \"provider_code\": \"{{provider_code}}\",\n            \"min_amount\": \"{{min_amount}}\",\n            \"max_amount\": \"{{max_amount}}\",\n            \"percentage\": \"{{percentage}}\",\n            \"provider_info\": \"{{provider_info}}\"\n        }\n    ]\n}"}],"_postman_id":"ba55e75e-b7ae-4527-9168-7a66421c5062"},{"name":"Buy Airtime TopUp","id":"95fec7da-e11b-4a6a-ae01-428e9a67985a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"{{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseUrl}}/api/v1/buy","description":"<p>This request endpoint enables you to buy Airtime TopUp.</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>recipient</strong> -- Recipient</p>\n<p><strong>amount</strong> -- Amount</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n","urlObject":{"path":["api","v1","buy"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"affe1929-a90d-4a58-baf4-c54b0f532787","name":"Buy Airtime TopUp","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"","type":"text"},{"key":"recipient","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"amount","value":"","type":"text"},{"key":"reference","value":"","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"95fec7da-e11b-4a6a-ae01-428e9a67985a"}],"id":"335cbeb0-91ea-4bbb-abfb-18d343ce2d03","_postman_id":"335cbeb0-91ea-4bbb-abfb-18d343ce2d03","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}}],"id":"0bc55ad8-4f24-476c-9468-d618d8cd0a30","_postman_id":"0bc55ad8-4f24-476c-9468-d618d8cd0a30","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Airtime Swap","item":[{"name":"Get Airtime Swap Providers","id":"4990cddd-3f4f-4b33-9feb-a5ae9a8b2518","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_image\": \"{provider_image}\",\n            \"provider_name\": \"{provider_name}\",\n            \"provider_code\": \"{provider_code}\",\n            \"min_amount\": \"{min_amount}\",\n            \"max_amount\": \"{max_amount}\",\n            \"airtime_swap_percentage\": \"{airtime_swap_percentage}\"\n        },\n        {\n            \"provider_image\": \"{provider_image}\",\n            \"provider_name\": \"{provider_name}\",\n            \"provider_code\": \"{provider_code}\",\n            \"min_amount\": \"{min_amount}\",\n            \"max_amount\": \"{max_amount}\",\n            \"airtime_swap_percentage\": \"{airtime_swap_percentage}\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/airtime-swap","description":"<p>This request consist of available airtime swap providers. Please note the unique provider code of each provider, you will need it to perform subsequent transactions</p>\n","urlObject":{"path":["api","v1","airtime-swap"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bff5bd09-c134-46d7-8e92-169c6b095c0c","name":"Get Airtime Swap Providers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/airtime-swap"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 24 Apr 2022 21:11:27 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-powered-by","value":"PHP/7.3.33"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET,POST"},{"key":"access-control-max-age","value":"3600"},{"key":"access-control-allow-headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"x-turbo-charged-by","value":"LiteSpeed"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jugSpHgr%2B1b8Q1rvUUWsTezf6KTnWHw4ornJtXX9AfH6VW%2FOqo9RDnKqmiF3XlaCt9T0qwbgHgbaQuohIt%2BfPqMRhX6juno4iXJHt79F3G%2F2c4NP9H1uBxdCRr14D%2BDVn6wz\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7011d4cd78147541-LHR"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_image\": \"{provider_image}\",\n            \"provider_name\": \"{provider_name}\",\n            \"provider_code\": \"{provider_code}\",\n            \"min_amount\": \"{min_amount}\",\n            \"max_amount\": \"{max_amount}\",\n            \"airtime_swap_percentage\": \"{airtime_swap_percentage}\"\n        },\n        {\n            \"provider_image\": \"{provider_image}\",\n            \"provider_name\": \"{provider_name}\",\n            \"provider_code\": \"{provider_code}\",\n            \"min_amount\": \"{min_amount}\",\n            \"max_amount\": \"{max_amount}\",\n            \"airtime_swap_percentage\": \"{airtime_swap_percentage}\"\n        }\n    ]\n}"}],"_postman_id":"4990cddd-3f4f-4b33-9feb-a5ae9a8b2518"},{"name":"Swap Airtime","id":"ddebaad1-7bb4-4833-85d2-5e4139b13ec0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"{{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"api_mode\": \"{{api_mode}}\",\n        \"message\": \"{{message}}\",\n        \"transaction_data\": {\n            \"package\": \"{{package}}\",\n            \"provider\": \"{{provider}}\",\n            \"reference\": \"{{reference}}\",\n            \"your_ref\": \"{{your_ref}}\",\n            \"amount_to_swap\": \"{{amount_to_swap}}\",\n            \"status\": \"{{status}}\",\n            \"recipient\": \"{{09069588201}}\",\n            \"send_to\" : \"{{send_to}}\",\n            \"amount_to_get\": \"{{amount_to_get}}\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/swap-airtime","description":"<p>This request endpoint enables you to swap Airtime.<br />Below are the request body parameters :</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>recipient</strong> -- The sender phone number</p>\n<p><strong>amount</strong> -- Amount to swap</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay Account pin</p>\n","urlObject":{"path":["api","v1","swap-airtime"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"51fb153f-7953-4f91-9ecf-3611df622223","name":"Swap Airtime","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"{{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"recipient","value":"","type":"text"},{"key":"reference","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"amount","value":"","type":"text"},{"key":"account_pin","value":"","type":"text"}]},"url":"{{baseUrl}}/api/v1/swap-airtime"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 10 Dec 2022 09:11:51 GMT"},{"key":"Server","value":"Apache/2.4.50 (Unix) OpenSSL/1.1.1k PHP/7.3.31 mod_perl/2.0.11 Perl/v5.32.1"},{"key":"X-Powered-By","value":"PHP/7.3.31"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Content-Length","value":"643"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"api_mode\": \"{{api_mode}}\",\n        \"message\": \"{{message}}\",\n        \"transaction_data\": {\n            \"package\": \"{{package}}\",\n            \"provider\": \"{{provider}}\",\n            \"reference\": \"{{reference}}\",\n            \"your_ref\": \"{{your_ref}}\",\n            \"amount_to_swap\": \"{{amount_to_swap}}\",\n            \"status\": \"{{status}}\",\n            \"recipient\": \"{{09069588201}}\",\n            \"send_to\" : \"{{send_to}}\",\n            \"amount_to_get\": \"{{amount_to_get}}\"\n        }\n    }\n}"}],"_postman_id":"ddebaad1-7bb4-4833-85d2-5e4139b13ec0"}],"id":"6ffd80e6-8701-4d2f-b919-ba7e4c21c04d","_postman_id":"6ffd80e6-8701-4d2f-b919-ba7e4c21c04d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Electricity Bill","item":[{"name":"Get Electricity Bill Providers","id":"88c6a078-3042-4fec-89bd-1f7fab6d3c1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Elecricity Bill Provider 1\",\n      \"provider_code\": \"unique_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\"\n    },\n    {\n        \"provider_image\": \"image\",\n      \"provider_name\": \"Elecricity Bill Provider 1\",\n      \"provider_code\": \"unique_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/electricity-bill","description":"<p>This request consist of available Electricity Bill providers. Please note the unique provider_code of each provider, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","electricity-bill"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ddb5e789-14b7-4f44-9044-5ee5963e1f51","name":"Get Electricity Bill Providers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"{{baseUrl}}/api/v1/electricity-bill"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Elecricity Bill Provider 1\",\n            \"provider_code\": \"unique_provider_code\",\n            \"min_amount\" : \"min_amount\",\n            \"max_amount\" : \"max_amount\"\n        },\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Elecricity Bill Provider 1\",\n            \"provider_code\": \"unique_provider_code\",\n            \"min_amount\" : \"min_amount\",\n            \"max_amount\" : \"max_amount\"\n        }\n    ]\n}"}],"_postman_id":"88c6a078-3042-4fec-89bd-1f7fab6d3c1e"},{"name":"Buy Electricity Bill","id":"6943c300-2076-48ba-a10f-afcbb4d59f09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseUrl}}/api/v1/buy","description":"<p>This request endpoint enables you to buy Electricity Bill.</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>recipient</strong> -- Recipient</p>\n<p><strong>amount</strong> -- Amount</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n<p><strong>meter_type</strong> -- prepaid or postpaid (if nothing is provided <strong>prepaid</strong> will be used as default)</p>\n","urlObject":{"path":["api","v1","buy"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"key":"key","value":null},{"disabled":true,"key":"value","value":null}],"variable":[]}},"response":[{"id":"8b9a52b0-dbe6-410a-9b95-8d90588f0bf1","name":"Buy Electricity Bill","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"","type":"text"},{"key":"recipient","value":"","type":"text"},{"key":"amount","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"reference","value":"","type":"text"},{"key":"meter_type","value":"","description":"optional","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy"},"_postman_previewlanguage":"json","header":[{"key":"","value":"","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"6943c300-2076-48ba-a10f-afcbb4d59f09"}],"id":"383a0833-640e-49b5-9b37-c935cddb0a58","_postman_id":"383a0833-640e-49b5-9b37-c935cddb0a58","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Data Coupon","item":[{"name":"Get DataCoupon Providers","id":"c3cb06ac-9148-4000-871a-1e71395befae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Data Bunble Provider 1\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\",\n      \"min_quantity\" : \"min_quantity\",\n      \"max_quantity\" : \"max_quantity\"\n    },\n    {\n     \"provider_image\": \"image\",\n      \"provider_name\": \"Data Bunble Provider 2\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\",\n      \"min_amount\" : \"min_amount\"\n      \"max_amount\" : \"max_amount\",\n      \"min_quantity\" : \"min_quantity\",\n      \"max_quantity\" : \"max_quantity\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/datacoupon","description":"<p>This request consist of available DataCoupon providers. Please note the unique <strong>provider_code</strong> of each provider, you will need it to perform subsequent transactions</p>\n","urlObject":{"path":["api","v1","datacoupon"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ff48d26f-d7b8-4e8d-a3af-46b4f9393e13","name":"Get Datashare Providers","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{baseUrl}}/api/v1/datacoupon"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 24 Dec 2022 11:20:01 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"x-powered-by","value":"PHP/7.3.33"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"GET,POST"},{"key":"access-control-max-age","value":"3600"},{"key":"access-control-allow-headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"x-turbo-charged-by","value":"LiteSpeed"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uOeRjxaZeOCnKNltOOy78EJp7m%2FQ%2FVCk3otRUBcXCcnxAJE33VpQd8bGHVe%2Bss%2BHPpfOFprsj8Byx1AkR%2Fr0i0cLHoGqQJ%2FjZNvP%2BiaT%2FfZ9oyOygwZ7MPC0DBPckIxKnF%2Bd\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"77e8f1fbefd0bc93-LHR"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Data Bunble Provider 1\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\",\n      \"min_quantity\" : \"min_quantity\",\n      \"max_quantity\" : \"max_quantity\"\n    },\n    {\n     \"provider_image\": \"image\",\n      \"provider_name\": \"Data Bunble Provider 2\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\",\n      \"max_amount\" : \"max_amount\",\n      \"min_quantity\" : \"min_quantity\",\n      \"max_quantity\" : \"max_quantity\"\n    }\n  ]\n}"}],"_postman_id":"c3cb06ac-9148-4000-871a-1e71395befae"},{"name":"Get DataCoupon Packages","id":"3a436c59-4b50-46f9-835a-ab4bb7e9efd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Data Bundle Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Data Bundle Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/datacoupon-package","description":"<p>This request consist of available packages for DataCoupon. Please note the<br />unique package code of each package, you will need it to perform<br />subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","datacoupon-package"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"34b6c5ac-9793-4edb-8ed3-ffdc9d4f0556","name":"Get Datashare Packages","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"provider_code","value":"{{ provider_code }}","type":"text"}]},"url":"{{baseUrl}}/api/v1/datacoupon-package"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Data Bundle Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Data Bundle Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}"}],"_postman_id":"3a436c59-4b50-46f9-835a-ab4bb7e9efd2"},{"name":"Buy DataCoupon","id":"b3968829-2f6c-45c9-869c-cff4229bde9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": {{status}},\n    \"message\": {{message}},\n    \"data\": {\n        \"status\": {{status}},\n        \"api_mode\": {{api_mode}},\n        \"message\": {{message}},\n        \"transaction_data\": {\n            \"package\": {{package}},\n            \"provider\": {{provider}},\n            \"reference\": {{reference}},\n            \"your_ref\": {{your_ref}},\n            \"status\": {{status}},\n            \"quantity\": {{quantity}},\n            \"unit_price\": {{unit_price}},\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy-datacoupon","description":"<p>This request endpoint enables you to buy DataCoupon Pin.</p>\n<p>Below are the request body parameters :</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>quantity</strong> -- Quantity</p>\n<p><strong>package_code</strong> -- Package code</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n","urlObject":{"path":["api","v1","buy-datacoupon"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"04d6c44a-646b-4853-98f4-0a6f89bbfc73","name":"Buy DataShare Pin","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"reference","value":"{{reference}}","type":"text"},{"key":"provider_code","value":"{{provider_code}}","type":"text"},{"key":"package_code","value":"{{package_code}}","type":"text"},{"key":"account_pin","value":"{{ account_pin }}","type":"text"},{"key":"quantity","value":"{{quantity}}","type":"text"}]},"url":"{{baseUrl}}/api/v1/buy-datacoupon"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {{status}},\n    \"message\": {{message}},\n    \"data\": {\n        \"status\": {{status}},\n        \"api_mode\": {{api_mode}},\n        \"message\": {{message}},\n        \"transaction_data\": {\n            \"package\": {{package}},\n            \"provider\": {{provider}},\n            \"reference\": {{reference}},\n            \"your_ref\": {{your_ref}},\n            \"status\": {{status}},\n            \"quantity\": {{quantity}},\n            \"unit_price\": {{unit_price}},\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"b3968829-2f6c-45c9-869c-cff4229bde9f"}],"id":"f99b81ea-873d-4572-bee3-18574ca4b33d","_postman_id":"f99b81ea-873d-4572-bee3-18574ca4b33d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Streaming TV","item":[{"name":"Get Streaming TV Providers","id":"f6a0d668-a066-4f6f-934b-ccef9ac9b8cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Streaming TV Package 1\",\n      \"provider_code\": \"uniqiue_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\"\n    },\n    {\n     \"provider_image\": \"image\",\n      \"provider_name\": \"Streaming TV Package 1\",\n      \"provider_code\": \"uniqiue_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\"\n    }\n  ]\n}\n\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/streaming-tv","description":"<p>This request consists of Cable TV API endpoint</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","streaming-tv"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8351e30f-b4d9-4d79-b0ed-fb571520b657","name":"Get Streaming TV Providers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"{{baseUrl}}/api/v1/streaming-tv"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Streaming TV Package 1\",\n            \"provider_code\": \"uniqiue_provider_code\"\n        },\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Streaming TV Package 1\",\n            \"provider_code\": \"uniqiue_provider_code\"\n        }\n    ]\n}"}],"_postman_id":"f6a0d668-a066-4f6f-934b-ccef9ac9b8cf"},{"name":"Get Streaming Tv Packages","id":"442603e1-68f6-4733-a3ad-8c84e8208e3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"package_name\": \"Stremaing TV Package 1\",\n            \"package_amount\": {{amount}},\n            \"package_original_amount\": {{amount}},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\" : \"provider_code\"\n        },\n        {\n            \"package_name\": \"Stremaing TV Package 2\",\n            \"package_amount\": {{amount}},\n            \"package_original_amount\": {{amount}},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\" : \"provider_code\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/packages","description":"<p>This request consist of available packages for Cable TV. Please note the unique package code of each package, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","packages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7a7c38aa-b18b-4e7e-95a5-20d49dc1d716","name":"Get Streaming Tv Packages","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"provider_code","value":"","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/packages"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"package_name\": \"Cable TV Package 1\",\n            \"package_amount\": {{amount}},\n            \"package_original_amount\": {{amount}},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\" : \"provider_code\"\n        },\n        {\n            \"package_name\": \"Cable TV Package 2\",\n            \"package_amount\": {{amount}},\n            \"package_original_amount\": {{amount}},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\" : \"provider_code\"\n        }\n    ]\n}"}],"_postman_id":"442603e1-68f6-4733-a3ad-8c84e8208e3a"},{"name":"Buy Streaming Tv","id":"b09807f9-9cad-40c9-abce-df4b94de0181","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy","description":"<p>This request endpoint enables you to buy Cable Tv Subscription.</p>\n<p>Below are the request body parameters :</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>recipient</strong> -- Recipient</p>\n<p><strong>package_code</strong> -- Package code</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","buy"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"872f6e7a-38fb-49d1-bc85-4883d5b90fc1","name":"Buy Streaming Tv","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"","type":"text"},{"key":"package_code","value":"","type":"text"},{"key":"recipient","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"reference","value":"","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"b09807f9-9cad-40c9-abce-df4b94de0181"}],"id":"a8721481-adb0-4218-8a3d-e7c3a2da10b5","_postman_id":"a8721481-adb0-4218-8a3d-e7c3a2da10b5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Cable TV Subscription","item":[{"name":"Get Cable TV Providers","id":"cb48e4f1-f1c1-4767-bf0b-6461d8e054c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Cable TV Package 1\",\n      \"provider_code\": \"uniqiue_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\"\n    },\n    {\n     \"provider_image\": \"image\",\n      \"provider_name\": \"Cable TV Package 1\",\n      \"provider_code\": \"uniqiue_provider_code\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\"\n    }\n  ]\n}\n\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/cable-tv-subscription","description":"<p>This request consists of Cable TV API endpoint</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","cable-tv-subscription"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4bf75693-9bf3-4f9f-a17e-dca8377ef097","name":"Get Cable TV Providers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"{{baseUrl}}/api/v1/cable-tv-subscription"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Cable TV Package 1\",\n            \"provider_code\": \"uniqiue_provider_code\"\n        },\n        {\n            \"provider_image\": \"image\",\n            \"provider_name\": \"Cable TV Package 1\",\n            \"provider_code\": \"uniqiue_provider_code\"\n        }\n    ]\n}"}],"_postman_id":"cb48e4f1-f1c1-4767-bf0b-6461d8e054c1"},{"name":"Get Cable Tv Packages","id":"aafdb307-cb1a-4510-85bc-a9d1b7cf38cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"package_name\": \"Cable TV Package 1\",\n            \"package_amount\": {{amount}},\n            \"package_original_amount\": {{amount}},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\" : \"provider_code\"\n        },\n        {\n            \"package_name\": \"Cable TV Package 2\",\n            \"package_amount\": {{amount}},\n            \"package_original_amount\": {{amount}},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\" : \"provider_code\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/packages","description":"<p>This request consist of available packages for Cable TV. Please note the unique package code of each package, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","packages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7b50eb6f-61f8-4c92-aca9-88aa82075a5e","name":"Get Cable Tv Packages","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"provider_code","value":"","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/packages"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"package_name\": \"Cable TV Package 1\",\n            \"package_amount\": {{amount}},\n            \"package_original_amount\": {{amount}},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\" : \"provider_code\"\n        },\n        {\n            \"package_name\": \"Cable TV Package 2\",\n            \"package_amount\": {{amount}},\n            \"package_original_amount\": {{amount}},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\" : \"provider_code\"\n        }\n    ]\n}"}],"_postman_id":"aafdb307-cb1a-4510-85bc-a9d1b7cf38cf"},{"name":"Buy Cable Tv ","id":"dc4509a4-4250-4650-8a85-af6235b2b947","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy","description":"<p>This request endpoint enables you to buy Cable Tv Subscription.</p>\n<p>Below are the request body parameters :</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>recipient</strong> -- Recipient</p>\n<p><strong>package_code</strong> -- Package code</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","buy"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"20d55b23-86b5-45ed-9f09-8ec9283facc9","name":"Buy Cable Tv ","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"","type":"text"},{"key":"package_code","value":"","type":"text"},{"key":"recipient","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"reference","value":"","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"dc4509a4-4250-4650-8a85-af6235b2b947"}],"id":"eaf9db42-0797-40f3-b68f-6649b3065971","_postman_id":"eaf9db42-0797-40f3-b68f-6649b3065971","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Internet Bundle Package","item":[{"name":"Get Internet Bundle Providers","id":"13dfadd3-8ef1-408f-8dc7-fe5accdb3749","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_name\": \"Internet Package Provider 1\",\n      \"provider_code\": \"unique_provider_code\"\n    },\n    {\n      \"provider_name\": \"Internet Package Provider 2\",\n      \"provider_code\": \"unique_provider_code\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/internet-package","description":"<p>This request consist of available packages for Internet. Please note the unique api_code of each package, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","internet-package"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bde7e814-6708-4651-8357-782355d77ac7","name":"Get Internet Bundle Providers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"{{baseUrl}}/api/v1/internet-package"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"provider_name\": \"Internet Package Provider 1\",\n            \"provider_code\": \"unique_provider_code\"\n        },\n        {\n            \"provider_name\": \"Internet Package Provider 2\",\n            \"provider_code\": \"unique_provider_code\"\n        }\n    ]\n}"}],"_postman_id":"13dfadd3-8ef1-408f-8dc7-fe5accdb3749"},{"name":"Get Internet Bundle Packages","id":"0986e73a-49aa-46f6-a799-dde8926704d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"package_name\": \"Internet Package 1\",\n            \"package_amount\": {{amount}},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\": \"provider_code\"\n        },\n        {\n            \"package_name\": \"Internet Package 2\",\n            \"package_amount\": {{ amount }},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\": \"provider_code\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/packages","description":"<p>This request consist of available packages for Internet. Please note the <strong>package_code</strong> of each package, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","packages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e79a5eb2-0adb-4189-a4af-9afbb1ddde4d","name":"Get Internet Bundle Packages","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"","value":"","type":"text","disabled":true},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"provider_code","value":"","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/packages"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"package_name\": \"Internet Package 1\",\n            \"package_amount\": {{amount}},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\": \"provider_code\"\n        },\n        {\n            \"package_name\": \"Internet Package 2\",\n            \"package_amount\": {{ amount }},\n            \"package_code\": \"unique_package_code\",\n            \"provider_code\": \"provider_code\"\n        }\n    ]\n}"}],"_postman_id":"0986e73a-49aa-46f6-a799-dde8926704d2"},{"name":"Buy Internet Bundle Package","id":"8b5d3ea4-df0b-42e2-9031-41f01a0ebfc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":" \"status\": true,\n    \"message\": \"success\",\n    \"api_mode\" : {{api_mode}}\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy","description":"<p>This request endpoint enables you to buy Internet.</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>recipient</strong> -- Recipient</p>\n<p><strong>package_code</strong> -- Package code</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","buy"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"dc5486f4-04a7-4ed9-979b-22087e52f053","name":"Buy Internet Bundle Package","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"package_code","value":"","type":"text"},{"key":"recipient","value":"","type":"text"},{"key":"reference","value":"","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"recipient\": \"{{recipient}}\",\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"8b5d3ea4-df0b-42e2-9031-41f01a0ebfc7"}],"id":"e0fad473-eee8-446c-bb24-239fe34af648","_postman_id":"e0fad473-eee8-446c-bb24-239fe34af648","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Education","item":[{"name":"Get Education Providers","id":"2a36d042-ed2d-424f-884c-98eab87831ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Education Provider 1\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\"\n    },\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Data Bunble Provider 2\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\",\n      \"min_amount\" : \"min_amount\",\n      \"max_amount\" : \"max_amount\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/education","description":"<p>This request consist of available Education providers. Please note the unique <strong>provider_code</strong> of each provider, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","education"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1c47c36a-02ff-4dd4-9182-47429345bdf8","name":"Get Data Bundle Providers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"{{baseUrl}}/api/v1/education"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 05:38:38 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"266"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"provider_image\": \"image\",\n      \"provider_name\": \"Education Provider 1\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\"\n    },\n    {\n        \"provider_image\": \"image\",\n      \"provider_name\": \"Education Provider 2\",\n      \"provider_code\": \"unique_provider_code\",\n      \"provider_info\" : \"provider_info\"\n    }\n  ]\n}"}],"_postman_id":"2a36d042-ed2d-424f-884c-98eab87831ca"},{"name":"Get Education Packages","id":"a77a2cee-3714-4ab1-a721-569bfe164cac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Education Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Education Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/packages","description":"<p>This request consist of available packages for Education. Please note the unique package code of each package, you will need it to perform subsequent transactions</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","packages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2199a3f8-19d4-4d28-bc2a-b5d0aed8cdfa","name":"Get Education Packages","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"provider_code","value":"{{provider_code}}","type":"text"}]},"url":"{{baseUrl}}/api/v1/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 06:07:18 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"294"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": [\n    {\n      \"package_name\": \"Education Package 1\",\n      \"package_amount\": {{amount}},\n      \"package_original_amount\": {{amount}},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    },\n    {\n      \"package_name\": \"Education Package 2\",\n      \"package_amount\": {{ amount }},\n      \"package_code\": \"unique_package_code\",\n      \"provider_code\": \"provider_code\"\n    }\n  ]\n}"}],"_postman_id":"a77a2cee-3714-4ab1-a721-569bfe164cac"},{"name":"Buy Education","id":"bd3d8bda-023a-4d2c-b654-f22bd3b046b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"method\": \"{{method}}\",\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/buy","description":"<p>This request endpoint enables you to buy Data Bundle.</p>\n<p>Below are the request body parameters :</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>package_code</strong> -- Package code</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>account_pin</strong> -- Your VeraciousPay account pin</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","buy"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"330bca46-a55f-44c7-8348-633712d05f8b","name":"Buy Education","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"","type":"text"},{"key":"provider_code","value":"","type":"text"},{"key":"package_code","value":"","type":"text"},{"key":"reference","value":"","type":"text"}]},"url":"{{baseUrl}}/api/v1/buy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 07:17:05 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"105"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":" \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"status\": true,\n        \"message\": \"Transaction Sent For Processing . N{{amount}} {{provider}}  Recipient : {{recipient}}  \",\n        \"transaction_data\": {\n            \"reference\": \"{{reference}}\",\n            \"status\": \"{{status}}\",\n            \"package\": {{package}},\n            \"provider\" : {{provider}},\n            \"amount_paid\": {{amount_paid}}\n        }\n    }\n}"}],"_postman_id":"bd3d8bda-023a-4d2c-b654-f22bd3b046b8"}],"id":"5c5d0bdf-fa07-41df-a371-3569b9d58022","event":[{"listen":"prerequest","script":{"id":"ed60ffe3-553f-4fa0-b39e-b45fe6c73889","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9f397cae-6fe3-482f-aa00-9678d15e5b49","type":"text/javascript","exec":[""]}}],"_postman_id":"5c5d0bdf-fa07-41df-a371-3569b9d58022","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Validations","item":[{"name":"Provider Recipient Validation","id":"83a9dc02-e26a-48a8-917b-34257d5e321a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"status\": true,\n  \"message\": \"success\",\n  \"data\": {\n    \"verified\": true,\n    \"message\": \"Verified {{provider}}\"\n  }\n}\n\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/validation","description":"<p>This request endpoints is for validation of recipients</p>\n<p>Below are the request body parameters :</p>\n<p><strong>provider_code</strong> -- Provider Code</p>\n<p><strong>recipient</strong> -- Recipient</p>\n<p><strong>isPorted</strong> -- If recipient number is a ported line (yes or no. no is default)</p>\n<p><strong>meter_type</strong> -- prepaid or postpaid (if nothing is provided <strong>prepaid</strong> will be used as default)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","validation"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"86794949-3483-49b2-bd36-f5250bbb13e1","name":"Provider Recipient Validation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"provider_code","value":"","type":"text"},{"key":"recipient","value":"","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/validation"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"verified\": true,\n        \"message\": \"Verified {{provider}}\"\n    }\n}"}],"_postman_id":"83a9dc02-e26a-48a8-917b-34257d5e321a"}],"id":"b33cf4ce-b8e7-410b-921e-6e4ce63a2099","description":"<p>This folder consists of endpoints for validation of recipients</p>\n","_postman_id":"b33cf4ce-b8e7-410b-921e-6e4ce63a2099","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Transactions","item":[{"name":"Get Transactions","id":"073f9a10-b364-408e-a45d-6a1ed42390ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization Bearer","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\":\"{status}\", \n    \"start_date\" : \"{start_date}\",\n     \"end_date\" : \"{end_date}\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/transactions","description":"<p>This endpoint is used to fetch a transaction.</p>\n<p>Below are the responses example :</p>\n<p><strong>reference</strong> -- reference</p>\n<p><strong>your reference</strong> -- your reference</p>\n<p><strong>provider</strong> -- Provider Name</p>\n<p><strong>recipient</strong> -- The Recipient</p>\n<p><strong>status</strong> -- Order Status which can be any of these : Pending, Completed, Processing, Cancelled, Refund, Failed</p>\n<p><strong>amount_paid</strong> - The total amount paid for the transaction</p>\n<p><strong>package</strong> -- Package name</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","transactions"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8f6b5ea2-e918-4ae8-a275-290010666b04","name":"Get Transactions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"transaction_id ","value":"","type":"text","disabled":true}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/transactions"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"{{message}}\",\n    \"data\": {\n        \"transaction_data\": [\n            {\n                \"package\": \"{{package}}\",\n                \"provider\": \"{{provider}}\",\n                \"recipient\": \"{{recipient}}\",\n                \"amount_paid\": {{amount_paid}},\n                \"description\": \"{{description}}\",\n                \"reference\": \"{{reference}}\",\n                \"your_ref\": {{your_ref}},\n                \"status\": \"{{status}}\",\n                \"meter_token\": \"{{meter_token}}\",\n                \"meter_unit\": \"{{meter_unit}}\",\n                \"date\": \"{{date}}\"\n            },\n            {\n                \"package\": \"{{package}}\",\n                \"provider\": \"{{provider}}\",\n                \"recipient\": \"{{recipient}}\",\n                \"amount_paid\": {{amount_paid}},\n                \"description\": \"{{description}}\",\n                \"reference\": \"{{reference}}\",\n                \"your_ref\": {{your_ref}},\n                \"status\": \"{{status}}\",\n                \"meter_token\": \"{{meter_token}}\",\n                \"meter_unit\": \"{{meter_unit}}\",\n                \"date\": \"{{date}}\"\n            }\n        ]\n    }\n}"}],"_postman_id":"073f9a10-b364-408e-a45d-6a1ed42390ee"},{"name":"ReQuery A Transaction","id":"37819d4e-9b01-4fe8-9dbb-a91c530eff98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"message\": \"{{message}}\",\n    \"method\" : \"{{method}}\",\n    \"data\": {\n        \"transaction_data\": [\n            {\n                \"package\": \"{{package}}\",\n                \"provider\": \"{{provider}}\",\n                \"recipient\": \"{{recipient}}\",\n                \"amount_paid\": {{amount_paid}},\n                \"description\": \"{{description}}\",\n                \"reference\": \"{{reference}}\",\n                \"your_ref\": {{your_ref}},\n                \"server_response\": {{server_response}},\n                \"status\": \"{{status}}\",\n                \"meter_token\": \"{{meter_token}}\",\n                \"meter_unit\": \"{{meter_unit}}\",\n                \"date\": \"{{date}}\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/requery","description":"<p>This endpoint is used to requery a transaction.</p>\n<p>Below are the responses example :</p>\n<p><strong>reference</strong> -- (Merchant's Unique reference for the transaction.)</p>\n<p><strong>provider</strong> -- Provider Name</p>\n<p><strong>recipient</strong> -- The Recipient</p>\n<p><strong>status</strong> -- Order Status which can be any of these : Pending, Completed, Processing, Cancelled, Refund, Failed</p>\n<p><strong>amount_paid</strong> - The total amount paid for the transaction</p>\n<p><strong>package</strong> -- Package name</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","requery"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8726f548-0c59-4666-a941-4382b85e1f0d","name":"ReQuery A Transaction","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"reference","value":"{{reference}}","type":"text"}]},"url":"{{baseUrl}}/api/v1/requery"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"{{message}}\",\n    \"method\" : \"{{method}}\",\n    \"data\": {\n        \"transaction_data\": [\n            {\n                \"package\": \"{{package}}\",\n                \"provider\": \"{{provider}}\",\n                \"recipient\": \"{{recipient}}\",\n                \"amount_paid\": {{amount_paid}},\n                \"description\": \"{{description}}\",\n                \"reference\": \"{{reference}}\",\n                \"your_ref\": {{your_ref}},\n                \"server_response\": {{server_response}},\n                \"status\": \"{{status}}\",\n                \"meter_token\": \"{{meter_token}}\",\n                \"meter_unit\": \"{{meter_unit}}\",\n                \"date\": \"{{date}}\"\n            }\n        ]\n    }\n}"}],"_postman_id":"37819d4e-9b01-4fe8-9dbb-a91c530eff98"}],"id":"e9cd2e86-7104-43ba-9ea0-b512c741997c","_postman_id":"e9cd2e86-7104-43ba-9ea0-b512c741997c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"Account Information","item":[{"name":"My Account","id":"0e74d695-7bbc-4c29-99b7-3b35304b4db5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"name\": \"{name}\",\n        \"email\": \"{email}\",\n        \"account_balance\": {\n            \"balance\": \"{balance}\",\n            \"commission\": \"{commission}\"\n        },\n        \"revenue\": {\n            \"income\": \"{income}\",\n            \"expenses\": \"{expenses}\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/my-account","description":"<p>This folder contains endpoint to get your account information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","my-account"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3265d253-8e7a-4118-908a-d95611ab56be","name":"My Account","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"{{baseUrl}}/api/v1/my-account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 14 Nov 2020 05:30:18 GMT"},{"key":"Server","value":"Apache/2.4.46 (Unix) OpenSSL/1.1.1g PHP/7.3.22 mod_perl/2.0.11 Perl/v5.32.0"},{"key":"X-Powered-By","value":"PHP/7.3.22"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET,POST"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"176"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application\\/x-www-form-urlencoded"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"success\",\n    \"data\": {\n        \"name\": \"{name}\",\n        \"email\": \"{email}\",\n        \"account_balance\": {\n            \"balance\": \"{balance}\",\n            \"commission\": \"{commission}\"\n        },\n        \"revenue\": {\n            \"income\": \"{income}\",\n            \"expenses\": \"{expenses}\"\n        }\n    }\n}"}],"_postman_id":"0e74d695-7bbc-4c29-99b7-3b35304b4db5"}],"id":"bbebbdfe-d166-4264-b46c-76631cf10f74","_postman_id":"bbebbdfe-d166-4264-b46c-76631cf10f74","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}},{"name":"DataStorage CloudServer","item":[{"name":"storage","id":"7a0bb032-6fc1-4660-9f7b-5d78c4bb6f3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"url":"{{baseUrl}}/api/v1/storage","description":"<p>This folder contains endpoint to get your data storage.</p>\n","urlObject":{"path":["api","v1","storage"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"50c0a537-72b4-47fa-a652-ba2559f96378","name":"storage","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{ access_token }}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": {{status}},\n    \"message\": \"{{message}}\",\n    \"data\": [\n        {\n            \"server_token\": \"{{server}}\",\n            \"package_name\": \"{{package_name}}\",\n            \"status\": \"{{status}}\",\n            \"storage_size\": \"{{storage_size}}\"\n        },\n        {\n            \"server_token\": \"{{server}}\",\n            \"package_name\": \"{{package_name}}\",\n            \"status\": \"{{status}}\",\n            \"storage_size\": \"{{storage_size}}\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/storage"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": {{status}},\n    \"message\": \"{{message}}\",\n    \"data\": [\n        {\n            \"server\": \"{{server}}\",\n            \"package_name\": \"{{package_name}}\",\n            \"status\": \"{{status}}\",\n            \"storage_size\": \"{{storage_size}}\"\n        },\n        {\n            \"server\": \"{{server}}\",\n            \"package_name\": \"{{package_name}}\",\n            \"status\": \"{{status}}\",\n            \"storage_size\": \"{{storage_size}}\"\n        }\n    ]\n}"}],"_postman_id":"7a0bb032-6fc1-4660-9f7b-5d78c4bb6f3f"},{"name":"DataStorage Transactions","id":"5e134f0c-45e3-40f2-8531-d515e23b95c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": true,\n    \"message\": \"{{message}}\",\n    \"data\": {\n        \"transaction_data\": [\n            {\n                \"package\": \"{{package}}\",\n                \"provider\": \"{{provider}}\",\n                \"recipient\": \"{{recipient}}\",\n                \"amount_paid\": {{amount_paid}},\n                \"description\": \"{{description}}\",\n                \"reference\": \"{{reference}}\",\n                \"your_ref\": {{your_ref}},\n                \"status\": \"{{status}}\",\n                \"server_response\": \"{{meter_token}}\",\n                \"date\": \"{{date}}\"\n            },\n            {\n                \"package\": \"{{package}}\",\n                \"provider\": \"{{provider}}\",\n                \"recipient\": \"{{recipient}}\",\n                \"amount_paid\": {{amount_paid}},\n                \"description\": \"{{description}}\",\n                \"reference\": \"{{reference}}\",\n                \"your_ref\": {{your_ref}},\n                \"status\": \"{{status}}\",\n                \"server_response\": \"{{meter_token}}\",\n                \"date\": \"{{date}}\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/v1/data-storage-transactions","description":"<p>This endpoint is used to get data storage transactions</p>\n<p>Below are the responses example :</p>\n<p><strong>reference</strong> -- reference</p>\n<p><strong>your reference</strong> -- your reference</p>\n<p><strong>provider</strong> -- Provider Name</p>\n<p><strong>recipient</strong> -- The Recipient</p>\n<p><strong>status</strong> -- Order Status which can be any of these : Pending, Completed, Processing, Cancelled, Refund, Failed</p>\n<p><strong>amount_paid</strong> - The total amount paid for the transaction</p>\n<p><strong>package</strong> -- Package name</p>\n<p><strong>server_response</strong> - The response of your data storage server</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","data-storage-transactions"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7ff92c22-f57f-47c7-bd93-2c1d55763d02","name":"DataStorage Transactions","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"server_token","value":"{{server_token}}","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}api/v1/data-storage-transactions"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"{{message}}\",\n    \"data\": {\n        \"transaction_data\": [\n            {\n                \"package\": \"{{package}}\",\n                \"provider\": \"{{provider}}\",\n                \"recipient\": \"{{recipient}}\",\n                \"amount_paid\": {{amount_paid}},\n                \"description\": \"{{description}}\",\n                \"reference\": \"{{reference}}\",\n                \"your_ref\": {{your_ref}},\n                \"status\": \"{{status}}\",\n                \"server_response\": \"{{meter_token}}\",\n                \"date\": \"{{date}}\"\n            },\n            {\n                \"package\": \"{{package}}\",\n                \"provider\": \"{{provider}}\",\n                \"recipient\": \"{{recipient}}\",\n                \"amount_paid\": {{amount_paid}},\n                \"description\": \"{{description}}\",\n                \"reference\": \"{{reference}}\",\n                \"your_ref\": {{your_ref}},\n                \"status\": \"{{status}}\",\n                \"server_response\": \"{{meter_token}}\",\n                \"date\": \"{{date}}\"\n            }\n        ]\n    }\n}"}],"_postman_id":"5e134f0c-45e3-40f2-8531-d515e23b95c8"}],"id":"8b528c9f-3b57-4c46-b34a-8c57d099dd5e","_postman_id":"8b528c9f-3b57-4c46-b34a-8c57d099dd5e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":true,"source":{"_postman_id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","id":"7390bb15-c227-48cb-a5b0-a08a23c2dd39","name":"VeraciousPay API Documentation","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]}},"event":[{"listen":"prerequest","script":{"id":"3752d368-8850-4788-ac17-7917dd8c0d47","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9855e0fa-aad1-4dcc-bbc8-31d6765fc0e5","type":"text/javascript","exec":[""]}}]}