{"info":{"_postman_id":"9d7673d5-62b1-485d-af2a-eab018fa46b6","name":"TrustPay - Documentation","description":"<html><head></head><body><h1 id=\"build-on-reliable-banking-infrastructure\">Build on reliable banking infrastructure</h1>\n<p>At SunTrust Bank, payment processing and classic banking, we remain committed to a collaborative effort to expand the opportunities that financial services represent and deepen financial inclusion.</p>\n<p>Explore bouquet of APIs on The Plug that helps to further this objective.</p>\n<h1 id=\"want-to-try-it-quickly\">Want to try it quickly?</h1>\n<p>To get started, sign up for The Plug by visiting <a href=\"https://trustpayconsole.suntrustng.com/\">TrustPay</a> your account has been approved, you will receive an invite email to set your password on the platform.</p>\n<ol>\n<li>Set up your password</li>\n<li>Login with newly set password</li>\n<li>Go to <strong>My Settings</strong></li>\n<li>GO to <strong>API Settings</strong></li>\n<li>Generate your <strong>API key</strong> and <strong>secret</strong></li>\n<li>Click <strong>Save Changes</strong> to save the newly generated API credentials</li>\n</ol>\n<h1 id=\"general-api-information\">General API information</h1>\n<p>The APIs are fairly RESTFUL and organized around the main services you would be interacting with. You can simply import this collection from the top right of the page into your <strong>Postman</strong>.</p>\n<p>The base url currently sits at:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>http://api.onepipe.io/\n\n</code></pre><h1 id=\"authentication-headers\">Authentication headers</h1>\n<p>Authenticate your API calls by including your API key in the Authorization header of every request you make. You can manage your API keys from your dashboard.</p>\n<p><em><strong>Sample Authorization Header:</strong></em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer {api_key}\n\n</code></pre><p>Also, every request requires you to provide a unique <code>request-ref</code> per call. Then You'd need to add a custom header called <code>Signature</code> that's an MD5 hash of that <code>request-ref</code> and your <code>api-secret</code> separated by a semi-colon. <code>;</code>.</p>\n<p><em><strong>Sample Signature Header:</strong></em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Signature:MD5Hash(request_ref;client_secret)\n\n</code></pre><p>Your complete header for evey single call will look like:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type:application/json\nAuthorization:Bearer {{api_key}}\nSignature:{{MD5Hash(request_ref;client_secret)}}\n\n</code></pre><h1 id=\"what-requests-would-look-like\">What requests would look like</h1>\n<p>For all requests, you'd put a JSON object in the body of your API call. All payloads have the following high level construct:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">    {\n      \"request_ref\":\"0000000001\",\n      \"request_type\":\"collect | disburse |etc\",\n      \"auth\": {\n        \"type\": \"bvn | bank.account\", \n        \"secure\": \"YKBOxtdD8kZHqG7JO0C9TZ\",\n        \"auth_provider\": \"SunTrust\"\n      },\n      \"transaction\": {\n        \"amount\": 10000,\n        \"transaction_ref\": \"000001\",\n        \"transaction_desc\": \"A random transaction\",\n        \"transaction_ref-parent\": \"000001\",\n        \"customer\":{\n            \"customer_ref\": \"000001\",\n            \"firstname\": \"Kola\",\n          \"surname\": \"Eboe\",\n            \"email\": \"kolaebue@gmail.com\",\n            \"mobile_no\": \"2348009871412\"\n        },\n        \"meta\":{\n            \"a_key\":\"a_meta_value_1\",\n            \"b_key\":\"a_meta_value_2\"\n        },\n        \"details\": {\n            \"key\": 'value'\n        }\n      }\n    }\n\n</code></pre>\n<h1 id=\"what-responses-would-look-like\">What responses would look like</h1>\n<p>For all responses, you'd get a JSON object in the body of the response you receive. All payloads have the following high level construct:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">    {\n        \"status\": \"Processing | WaitingForOTP | ProcessingOTP | Successful | Failed | OfflineValidating | OfflineValidated | OfflineNotifying | OfflineNotified\",\n        \"message\": \"The transaction has been processed successully\",\n        \"data\": {\n            \"provider_responde_code\":\"00\",\n            \"provider\": \"SunTrust\",\n            \"errors\": [],\n            \"error\": null,\n            \"charge_token\": \"Kz5Dev7BenV9HmLNB\",\n            \"paymentoptions\": []\n        }\n    }\n\n</code></pre>\n<ul>\n<li><strong>status</strong>: Indicates the state of the request, whether successful, failed or anything in between</li>\n<li><strong>message</strong>: Provides a text description of the state of the request and at times a message for the customer</li>\n<li><strong>data</strong>: Will contain much more details of the outcome of the request. The values within this could vary by request type or endpoint called but some standard elements would be in almost all calls</li>\n<li><strong>provider_response_code</strong>: The actual response code received from the underlying provider, e.g. <code>00</code> for Quickteller</li>\n<li><strong>provider</strong>: The provider that was used to process the request</li>\n<li><strong>errors</strong>: In case of a failed transaction, this contains the lists of errors that occurred while processing the transaction</li>\n<li><strong>error</strong>: This contain the most important error that hinders the successful completion of the transaction.<br>We highly recommend that developers use the Errors field to determine the result of an API call. As an empty Errors node indicate a successful transaction.</li>\n</ul>\n<p><strong>NOTE</strong>: Some API calls may have response elements that are only applicable to those API calls. You will see examples in the provided postman collection and across the documentation.</p>\n<h1 id=\"standard-status-codes\">Standard status codes</h1>\n<ul>\n<li><strong>Successful</strong>: For all requests that were successfully processed</li>\n<li><strong>Failed</strong>: If a request fails. Read the errors object(s)</li>\n<li><strong>WaitingForOTP</strong>: If a request requires OTP validation for completion.</li>\n<li><strong>PendingValidation</strong>: If a request requires other information to be supplied for completion.</li>\n<li><strong>Processing</strong>: If a transaction request is still in a processing state and needs to be subsequently queried.</li>\n<li><strong>OptionsDelivered</strong>: Applicable only for services that support some form of options processing.</li>\n<li><strong>InvalidID</strong>: If an ID being looked up by service is not valid.</li>\n<li><strong>Fraud</strong>: If a request is flagged as suspicious.</li>\n<li><strong>Duplicate</strong>: If a similar request has been made earlier within a stipulated time frame of 5 minutes.</li>\n<li><strong>[Anything else]</strong>: This would vary per endpoint called. Applicable values would be in the documentation for that endpoint.</li>\n</ul>\n<h1 id=\"http-status-codes\">HTTP Status Codes</h1>\n<ul>\n<li><strong>200</strong>: A successful request occurred, do note that the description field on the response can contain further steps to be carried on this transaction</li>\n<li><strong>400</strong>: Data validation error occurred due to inconsistent data supplied by the client</li>\n<li><strong>401</strong>: Invalid request authorization, which might be due to invalid API key or the client is not registered for the service being accessed.</li>\n<li><strong>500</strong>: An internal server error at our End, this should be reported if it persists.</li>\n</ul>\n<h1 id=\"encryption-of-secure-element\">Encryption of Secure element</h1>\n<p>For encryption of values for the <code>auth.secure</code> field, you'd use Triple DES Encryption algorithm with your application secret key as the encryption key</p>\n<p>E.g.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>TripleDES.encrypt(\"{bvn}\",secretKey)\nTripleDES.encrypt(\"{bank_account;bank_code}\",secretKey)\nTripleDES.encrypt(\"{otp}\",secretKey)\n\n</code></pre><p><strong>NOTE</strong> Expiry date is MMyy</p>\n<h2 id=\"sample-encryption-in-java\">Sample encryption in Java</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>MessageDigest md = MessageDigest.getInstance(\"md5\");\nbyte[] digestOfPassword = md.digest(key.getBytes(\"UTF-16LE\"));\nbyte[] keyBytes = Arrays.copyOf(digestOfPassword, 24);\nfor (int j = 0, k = 16; j &lt; 8;) {\n    keyBytes[k++] = keyBytes[j++];\n}\nSecretKey secretKey = new SecretKeySpec(keyBytes, 0, 24, \"DESede\");\nIvParameterSpec iv = new IvParameterSpec(new byte[8]);\nCipher cipher = Cipher.getInstance(\"DESede/CBC/PKCS5Padding\");\ncipher.init(Cipher.ENCRYPT_MODE, secretKey, iv);\nbyte[] plainTextBytes = toBeEncrypted.getBytes(\"UTF-16LE\");\nbyte[] cipherText = cipher.doFinal(plainTextBytes);\nString output = new String(Base64.encodeBase64(cipherText));\nreturn output;\n\n</code></pre><h2 id=\"sample-encryption-in-c-sharp\">Sample encryption in C-Sharp</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>string encryptedText = \"\";\nMD5 md5 = new MD5CryptoServiceProvider();\nTripleDES des = new TripleDESCryptoServiceProvider();\ndes.KeySize = 128;\ndes.Mode = CipherMode.CBC;\ndes.Padding = PaddingMode.PKCS7;\nbyte[] md5Bytes = md5.ComputeHash(Encoding.Unicode.GetBytes(key));\nbyte[] ivBytes = new byte[8];\ndes.Key = md5Bytes;\ndes.IV = ivBytes;\nbyte[] clearBytes = Encoding.Unicode.GetBytes(TextToEncrypt);\nICryptoTransform ct = des.CreateEncryptor();\nusing (MemoryStream ms = new MemoryStream())\n{\n    using (CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(), CryptoStreamMode.Write))\n    {\n        cs.Write(clearBytes, 0, clearBytes.Length);\n        cs.Close();\n    }\n    encryptedText = Convert.ToBase64String(ms.ToArray());\n}\nreturn encryptedText;\n\n</code></pre><h2 id=\"sample-encryption-in-php\">Sample encryption in PHP</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>function EncryptV2($encryption_key, $data)\n{\n  $method = \"des-ede3-cbc\";\n  $source = mb_convert_encoding($encryption_key, 'UTF-16LE', 'UTF-8');\n  $encryption_key = md5($source, true);\n  $encryption_key .= substr($encryption_key, 0, 16);\n  $iv =  \"\\0\\0\\0\\0\\0\\0\\0\\0\";\n  $encData = openssl_encrypt($data, $method, $encryption_key, $options = OPENSSL_RAW_DATA, $iv);\n  return base64_encode($encData);\n};\n\n</code></pre><h2 id=\"sample-encryption-in-nodejs\">Sample encryption in Node.js</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>const crypto = require('crypto');\nfunction encrypt(sharedKey, plainText) {\n    const bufferedKey = Buffer.from(sharedKey, 'utf16le');\n    const key = crypto.createHash('md5').update(bufferedKey).digest();\n    const newKey = Buffer.concat([key, key.slice(0, 8)]);\n    const IV = Buffer.alloc(8, '\\0');\n    const cipher = crypto.createCipheriv('des-ede3-cbc', newKey, IV).setAutoPadding(true);\n    return cipher.update(plainText, 'utf8', 'base64') + cipher.final('base64');\n}\n\n</code></pre><h1 id=\"switching-providers-for-a-service\">Switching providers for a service</h1>\n<p>All services subscribed to in your application are attached to providers that will end up fulfilling such service(s) on request. You can switch providers as you wish by managing the application from your dashboard and editing the service details. Also, for some endpoints, you can explicitly set the provider you would like to be used in the request payload. You would see examples in the documentation for the endpoints that support this.</p>\n<h1 id=\"bank-cbn-codes\">Bank CBN Codes</h1>\n<p>Anywhere bank codes are required in the API specification (bank_code), this refers to the CBN bank codes. Details of all bank codes can be found <a href=\"https://sandbox.interswitchng.com/docbase/docs/autogate-file-transfer/appendix/bank-cbn-codes/\">here</a>.</p>\n<p>Now let's dive deeper into specific API calls.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Build on reliable banking infrastructure","slug":"build-on-reliable-banking-infrastructure"},{"content":"Want to try it quickly?","slug":"want-to-try-it-quickly"},{"content":"General API information","slug":"general-api-information"},{"content":"Authentication headers","slug":"authentication-headers"},{"content":"What requests would look like","slug":"what-requests-would-look-like"},{"content":"What responses would look like","slug":"what-responses-would-look-like"},{"content":"Standard status codes","slug":"standard-status-codes"},{"content":"HTTP Status Codes","slug":"http-status-codes"},{"content":"Encryption of Secure element","slug":"encryption-of-secure-element"},{"content":"Switching providers for a service","slug":"switching-providers-for-a-service"},{"content":"Bank CBN Codes","slug":"bank-cbn-codes"}],"owner":"6358444","collectionId":"9d7673d5-62b1-485d-af2a-eab018fa46b6","publishedId":"VUjSEhzL","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-08-12T11:03:06.000Z"},"item":[{"name":"Accounts Provisioning","item":[{"name":"Open Account(Virtual)","event":[{"listen":"test","script":{"id":"18ea3d88-ea9a-4fef-a557-f979dec0ab1d","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"1d7b585b-aaa7-49bf-acd0-b217e15fdcb3","exec":[""],"type":"text/javascript"}}],"id":"a74bc165-c4fa-4ca4-bf35-6fbfeb12f71d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{api-key}}"},{"key":"Signature","type":"text","value":"{{signature}}"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"open_account\",\n    \"auth\": {\n        \"type\": null,\n        \"secure\": null,\n        \"auth_provider\": \"SunTrustVirtual\",\n        \"route_mode\": null\n    },\n    \"transaction\": {\n        \"mock_mode\": \"Live\",\n        \"transaction_ref\": \"{{transaction-ref}}\",\n        \"transaction_desc\": \"A random transaction\",\n        \"transaction_ref_parent\": null,\n        \"amount\": 0,\n        \"customer\": {\n            \"customer_ref\": \"2348033000989\",\n            \"firstname\": \"John\",\n            \"surname\": \"Doe\",\n            \"email\": \"john@doe.com\",\n            \"mobile_no\": \"2348033000989\"\n        },\n        \"meta\": {\n            \"a_key\": \"a_meta_value_1\",\n            \"b_key\": \"a_meta_value_2\"\n        },\n        \"details\": {\n            \"name_on_account\": \"John J. Doe\",\n            \"middlename\": \"Jane\",\n            \"dob\": \"2005-05-13\",\n            \"gender\": \"M\",\n            \"title\": \"Mr\",\n            \"address_line_1\": \"23, Okon street, Ikeja\",\n            \"address_line_2\": \"Ikeja\",\n            \"city\": \"Mushin\",\n            \"state\": \"Lagos State\",\n            \"country\": \"Nigeria\"\n        }\n    }\n}"},"url":"{{url}}/v2/transact","description":"<p>With this service, the calling apps can open and assign accounts to customers or transactions.</p>\n<p>**NOTE: Set <code>auth_provider</code> to <code>SunTrustVirtual</code></p>\n","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4539cfac-e1cb-4cb9-a3b2-1c2cb8d705fd","name":"Successful","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{api-key}}"},{"key":"Signature","type":"text","value":"{{signature}}"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"open_account\",\n    \"auth\": {\n        \"type\": null,\n        \"secure\": null,\n        \"auth_provider\": \"SunTrustVirtual\",\n        \"route_mode\": null\n    },\n    \"transaction\": {\n        \"mock_mode\": \"Live\",\n        \"transaction_ref\": \"{{transaction-ref}}\",\n        \"transaction_desc\": \"A random transaction\",\n        \"transaction_ref_parent\": null,\n        \"amount\": 1000,\n        \"customer\": {\n            \"customer_ref\": \"2348033000989\",\n            \"firstname\": \"John\",\n            \"surname\": \"Doe\",\n            \"email\": \"john@doe.com\",\n            \"mobile_no\": \"2348033000989\"\n        },\n        \"meta\": {\n            \"a_key\": \"a_meta_value_1\",\n            \"b_key\": \"a_meta_value_2\"\n        },\n        \"details\": {\n            \"name_on_account\": \"John J. Doe\",\n            \"middlename\": \"Jane\",\n            \"dob\": \"2005-05-13\",\n            \"gender\": \"M\",\n            \"title\": \"Mr\",\n            \"address_line_1\": \"23, Okon street, Ikeja\",\n            \"address_line_2\": \"Ikeja\",\n            \"city\": \"Mushin\",\n            \"state\": \"Lagos State\",\n            \"country\": \"Nigeria\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Mar 2020 13:49:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"873"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Request processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrustVirtual\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"reference\": \"MVgGByKV-js-oa\",\n            \"account_number\": \"9012807653\",\n            \"contract_code\": null,\n            \"account_reference\": \"MVgGByKV-js-oa\",\n            \"account_name\": \"Uju Usman\",\n            \"currency_code\": \"NGN\",\n            \"customer_email\": \"uju@gmail.com\",\n            \"bank_name\": \"SunTrust\",\n            \"bank_code\": \"030\",\n            \"account_type\": null,\n            \"status\": \"ACTIVE\",\n            \"created_on\": \"2021-11-01-19-11-55\",\n            \"meta\": {\n            }\n        },\n        \"client_info\": null\n    }\n}"},{"id":"5098f6b5-47b3-4dcb-91fb-66fe63c2d03c","name":"Waiting for OTP","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{api-key}}"},{"key":"Signature","type":"text","value":"{{signature}}"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"open_account\",\n    \"auth\": {\n        \"type\": null,\n        \"secure\": null,\n        \"auth_provider\": \"SunTrustVirtual\",\n        \"route_mode\": null\n    },\n    \"transaction\": {\n        \"mock_mode\": \"Live\",\n        \"transaction_ref\": \"{{transaction-ref}}\",\n        \"transaction_desc\": \"A random transaction\",\n        \"transaction_ref_parent\": null,\n        \"amount\": 1000,\n        \"customer\": {\n            \"customer_ref\": \"2348033000989\",\n            \"firstname\": \"John\",\n            \"surname\": \"Doe\",\n            \"email\": \"john@doe.com\",\n            \"mobile_no\": \"2348033000989\"\n        },\n        \"meta\": {\n            \"a_key\": \"a_meta_value_1\",\n            \"b_key\": \"a_meta_value_2\"\n        },\n        \"details\": {\n            \"name_on_account\": \"John J. Doe\",\n            \"middlename\": \"Jane\",\n            \"dob\": \"2005-05-13\",\n            \"gender\": \"M\",\n            \"title\": \"Mr\",\n            \"address_line_1\": \"23, Okon street, Ikeja\",\n            \"address_line_2\": \"Ikeja\",\n            \"city\": \"Mushin\",\n            \"state\": \"Lagos State\",\n            \"country\": \"Nigeria\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Mar 2020 13:49:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"873"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP sent to 2348022****08, use 12345678 as your OTP\",\n    \"data\": {\n        \"provider_response_code\": \"900T0\",\n        \"provider\": \"SunTrustVirtual\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"da15f24f-30ae-4cb9-9ac7-1703a5689f1a","name":"Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{api-key}}"},{"key":"Signature","type":"text","value":"{{signature}}"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"open_account\",\n    \"auth\": {\n        \"type\": null,\n        \"secure\": null,\n        \"auth_provider\": \"SunTrustVirtual\",\n        \"route_mode\": null\n    },\n    \"transaction\": {\n        \"mock_mode\": \"Live\",\n        \"transaction_ref\": \"{{transaction-ref}}\",\n        \"transaction_desc\": \"A random transaction\",\n        \"transaction_ref_parent\": null,\n        \"amount\": 1000,\n        \"customer\": {\n            \"customer_ref\": \"2348033000989\",\n            \"firstname\": \"John\",\n            \"surname\": \"Doe\",\n            \"email\": \"john@doe.com\",\n            \"mobile_no\": \"2348033000989\"\n        },\n        \"meta\": {\n            \"a_key\": \"a_meta_value_1\",\n            \"b_key\": \"a_meta_value_2\"\n        },\n        \"details\": {\n            \"name_on_account\": \"John J. Doe\",\n            \"middlename\": \"Jane\",\n            \"dob\": \"2005-05-13\",\n            \"gender\": \"M\",\n            \"title\": \"Mr\",\n            \"address_line_1\": \"23, Okon street, Ikeja\",\n            \"address_line_2\": \"Ikeja\",\n            \"city\": \"Mushin\",\n            \"state\": \"Lagos State\",\n            \"country\": \"Nigeria\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Mar 2020 13:49:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"873"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Invalid request mode\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"You are not yet enabled for go-live\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"You are not yet enabled for go-live\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"a74bc165-c4fa-4ca4-bf35-6fbfeb12f71d"},{"name":"Notification (payment completion)","event":[{"listen":"test","script":{"id":"4c3a8e7c-779b-4df1-890f-933559018b37","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c53ca020-564d-4d88-ba38-33d72a9f0d6c","exec":[""],"type":"text/javascript"}}],"id":"90478a27-3809-4f4f-ad81-0c2b3cc3bd36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Signature","type":"text","value":" {{MD5Hash(request_ref;app_secret)}}"}],"body":{"mode":"raw","raw":"{\r\n    \"details\": {\r\n        \"data\": {\r\n            \"bank_code\": \"030\",\r\n            \"sessionId\": \"090267220620154320113100150002\",\r\n            \"merchantId\": \"OPSTR20220620153332\",\r\n            \"transactionId\": \"S50857531\",\r\n            \"creditedAccount\": \"5600007269\",\r\n            \"transactionDate\": \"2022-06-20T00:00:00\",\r\n            \"transactionHash\": null,\r\n            \"transactionTime\": \"2022-06-20T15:47:02\",\r\n            \"transactionAmount\": \"100\",\r\n            \"transactionCurrency\": \"NGN\",\r\n            \"transactionNarration\": \"090-Akinkunmi Abdulroqeeb Olunloye-TES\",\r\n            \"transactionReference\": \"220607331531\",\r\n            \"virtualAccountNumber\": \"3330000811\"\r\n        },\r\n        \"meta\": {\r\n            \"route\": \"listener\",\r\n            \"amount\": \"10000\",\r\n            \"referrer\": \"https: //paywithtransfer.com/heritage-integration-support/heritage-integration-support\",\r\n            \"biller_id\": \"Heritage Integration Support\",\r\n            \"grb_status\": \"pwt-active\",\r\n            \"lock_account\": \"true\",\r\n            \"pwt_item_code\": null,\r\n            \"biller_item_id\": \"heritage-integration-support\",\r\n            \"pwt_item_amount\": \"10000\",\r\n            \"transaction_date\": \"2022-06-20-15-41-01\",\r\n            \"processing_method\": \"PWT\",\r\n            \"pwt_item_description\": \"GZ078pwz\"\r\n        },\r\n        \"amount\": 10000,\r\n        \"status\": \"Successful\",\r\n        \"provider\": \"HeritageBank\",\r\n        \"customer_ref\": \"2349066870810\",\r\n        \"customer_email\": \"roqak1@gmail.com\",\r\n        \"transaction_ref\": \"090267220620154320113100150002\",\r\n        \"customer_surname\": \"Akinkunmi\",\r\n        \"transaction_type\": \"collect\",\r\n        \"customer_firstname\": \"Olunloye\",\r\n        \"customer_mobile_no\": \"2349066870810\"\r\n    },\r\n    \"app_info\": {\r\n        \"app_code\": \"HERHO15269\"\r\n    },\r\n    \"mock_mode\": \"Live\",\r\n    \"requester\": \"HeritageBank\",\r\n    \"request_ref\": \"1655736394\",\r\n    \"request_type\": \"transaction_notification\"\r\n}"},"url":"","description":"<h2 id=\"a-use-case\">A use case</h2>\n<p>Notifications are useful for a new wave of payment approaches that businesses are starting to explore:</p>\n<ol>\n<li>Open an account and map it to a customer or specific transaction</li>\n<li>Ask customers to transfer to that account</li>\n<li>Get notified once a credit or debit hits that account</li>\n<li>Process the service that the customer was supposed to pay for</li>\n<li>Monies are \"swept\" from that account into yours after a while.</li>\n</ol>\n<p>With this, you'd expose a webhook url, that will receive a <code>POST</code> message upon a credit or debit activity on an account that you have access to.</p>\n<p>First, you have to setup your webhook url on the App console.</p>\n<p>Upon receiving the message, please respond with a <code>200 - OK</code>.</p>\n<h4 id=\"request-body-elements\">Request body elements</h4>\n<p>Here is the explanation of the fields you would receive.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>request_ref</td>\n<td>A unique reference for this specific API call. It would have been uniquely generated by SunTrust for every single call</td>\n</tr>\n<tr>\n<td>request_type</td>\n<td>In this case it would be set to '<code>transaction_notification</code>'.</td>\n</tr>\n<tr>\n<td>requester</td>\n<td>This would be set to <code>{{Simple Payments}}</code> if coming from the Simple Payments product. And set to <code>{{GRB}}</code> if coming from the Grassroots Banking product.</td>\n</tr>\n<tr>\n<td>mock_mode</td>\n<td>Here, you will receive <code>Live</code> for live transactions and <code>Inspect</code> for test transactions.</td>\n</tr>\n<tr>\n<td>details.amount</td>\n<td>Amount in kobo</td>\n</tr>\n<tr>\n<td>details.transaction_type</td>\n<td>This will come to you as <code>collect</code> since you are receiving an inflow.</td>\n</tr>\n<tr>\n<td>details.provider</td>\n<td>This will contain <code>{{Provider Name}}</code> that was used to process the payment.</td>\n</tr>\n<tr>\n<td>details.transaction_ref</td>\n<td>A unique reference for this specific transaction.</td>\n</tr>\n<tr>\n<td>details.customer_ref</td>\n<td>A unique reference with which you identify this customer on your systems.</td>\n</tr>\n<tr>\n<td>details.customer_firstname</td>\n<td>First name of the customer</td>\n</tr>\n<tr>\n<td>details.customer_surname</td>\n<td>Surname of the customer</td>\n</tr>\n<tr>\n<td>details.customer_email</td>\n<td>Email address of the customer</td>\n</tr>\n<tr>\n<td>details.customer_mobile_no</td>\n<td>Mobile number of the customer</td>\n</tr>\n<tr>\n<td>data</td>\n<td>A JSON object representing some of the details of the payment like invoice number and other miscellanous information.</td>\n</tr>\n<tr>\n<td>app_info.app_code</td>\n<td>Your application identifier on OnePipe</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"query":[],"variable":[]}},"response":[{"id":"f616f987-b8b8-42b9-aef1-110009fce67d","name":"Transaction Notification - success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Signature","value":" {{MD5Hash(request_ref;app_secret)}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"details\": {\r\n        \"data\": {\r\n            \"bank_code\": \"100\",\r\n            \"account_number\": \"8885293307\"\r\n        },\r\n        \"meta\": {\r\n            \"route\": \"listener\",\r\n            \"source\": \"OneWallet\",\r\n            \"publish\": false,\r\n            \"grb_status\": null,\r\n            \"lock_account\": false,\r\n            \"transaction_date\": \"2022-08-22-15-09-21\",\r\n            \"honour_provider_extension\": true\r\n        },\r\n        \"amount\": 1000000,\r\n        \"status\": \"Successful\",\r\n        \"provider\": \"SunTrustVirtual\",\r\n        \"customer_ref\": \"2348035324958-CHEC237253\",\r\n        \"customer_email\": \"oladejobabatundeazeez@gmail.com\",\r\n        \"transaction_ref\": \"090262220822144331656315632458\",\r\n        \"customer_surname\": \"Oladejo\",\r\n        \"transaction_desc\": \"8885293307 payment\",\r\n        \"transaction_type\": \"collect\",\r\n        \"customer_firstname\": \"Azeez\",\r\n        \"customer_mobile_no\": \"2348035324958\"\r\n    },\r\n    \"app_info\": {\r\n        \"app_code\": \"TRUT66089\"\r\n    },\r\n    \"mock_mode\": \"Live\",\r\n    \"requester\": \"SunTrustVirtual\",\r\n    \"request_ref\": \"e6590053-944e-4574-b01c-35b5e7c10d6d\",\r\n    \"request_type\": \"transaction_notification\"\r\n}","options":{"raw":{"language":"json"}}},"url":""},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"90478a27-3809-4f4f-ad81-0c2b3cc3bd36"}],"id":"f3f604d5-3be9-4f9a-bb23-6ee00ea1d211","_postman_id":"f3f604d5-3be9-4f9a-bb23-6ee00ea1d211","description":""},{"name":"Payments","item":[{"name":"Disburse","event":[{"listen":"test","script":{"id":"5fd5993a-2992-4e36-a166-44b71348e43b","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"3351036c-daa5-4a89-9ec6-4260f68a8402","exec":[""],"type":"text/javascript"}}],"id":"510a97af-7f1e-4a42-a238-714d4dfd73b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{api-key}}"},{"key":"Signature","type":"text","value":"{{signature}}"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"disburse\",\n    \"auth\": {\n        \"type\": null,\n        \"secure\": null,\n        \"auth_provider\": \"SunTrust\",\n        \"route_mode\": null\n    },\n    \"transaction\": {\n        \"mock_mode\": \"Live\",\n        \"transaction_ref\": \"{{transaction-ref}}\",\n        \"transaction_desc\": \"A random transaction\",\n        \"transaction_ref_parent\": null,\n        \"amount\": 1000,\n        \"customer\": {\n            \"customer_ref\": \"{{customer_id}}\",\n            \"firstname\": \"Uju\",\n            \"surname\": \"Usmanu\",\n            \"email\": \"ujuusmanu@gmail.com\",\n            \"mobile_no\": \"234802343132\"\n        },\n        \"meta\": {\n            \"a_key\": \"a_meta_value_1\",\n            \"b_key\": \"a_meta_value_2\"\n        },\n        \"details\": {\n            \"destination_account\": \"0099880099\",\n            \"destination_bank_code\": \"076\"\n        }\n    }\n}"},"url":"{{url}}/v2/transact","description":"<p>With this service, the calling apps can do a transfer to a destination account number from a pre-configured account of the app. If authorisation details are required by a provider, apps will have to provide this.</p>\n<p><strong>NOTE</strong>: Amount to be processed should be in <code>kobo</code> with decimal places.</p>\n<p>Please see information on how to compute the <code>Signature</code> header <a href=\"#authentication-headers\">here</a>.</p>\n<p>For information on how to encrypt <code>auth.secure</code> value, see <a href=\"#encryption-of-secure-element\">here</a>.</p>\n<h4 id=\"possible-status-values\">Possible status values</h4>\n<ul>\n<li><strong>Successful</strong>: Success</li>\n<li><strong>Processing</strong>: The transaction is taking a little longer than expected but is probably still executing in the background. A processing status should always read to a corresponding <code>query</code> call <code>(transact/query)</code> to get the final status of the transaction.</li>\n<li><strong>WaitingForOTP</strong>: Requires OTP, use <code>/v2/transact/validate</code> as <a href=\"#f1bdb553-68dd-4016-aeed-e4c3d1e27fe4\">follow up</a> call to complete transaction</li>\n<li><strong>[Anything else]</strong>: Error. Read the errors object(s)</li>\n</ul>\n","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b41a8d7d-54b4-4550-88b8-ad0c8c8fbe20","name":"Successful","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{api-key}}"},{"key":"Signature","type":"text","value":"{{signature}}"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"disburse\",\n    \"auth\": {\n        \"type\": null,\n        \"secure\": null,\n        \"auth_provider\": \"SunTrust\",\n        \"route_mode\": null\n    },\n    \"transaction\": {\n        \"mock_mode\": \"Live\",\n        \"transaction_ref\": \"{{transaction-ref}}\",\n        \"transaction_desc\": \"A random transaction\",\n        \"transaction_ref_parent\": null,\n        \"amount\": 1000,\n        \"customer\": {\n            \"customer_ref\": \"{{customer_id}}\",\n            \"firstname\": \"Uju\",\n            \"surname\": \"Usmanu\",\n            \"email\": \"ujuusmanu@gmail.com\",\n            \"mobile_no\": \"234802343132\"\n        },\n        \"meta\": {\n            \"a_key\": \"a_meta_value_1\",\n            \"b_key\": \"a_meta_value_2\"\n        },\n        \"details\": {\n            \"destination_account\": \"0099880099\",\n            \"destination_bank_code\": \"076\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Mar 2020 13:49:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"873"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Transaction processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"destination_institution_code\": \"076\",\n            \"beneficiary_account_name\": \"JAMES BLUE\",\n            \"beneficiary_account_number\": \"0099880099\",\n            \"beneficiary_kyc_level\": \"\",\n            \"originator_account_name\": \"\",\n            \"originator_account_number\": \"1100009909\",\n            \"originator_kyc_level\": \"\",\n            \"narration\": \"A random transaction\",\n            \"transaction_final_amount\": 1000,\n            \"reference\": \"C3DA541CA20740659031949CD3441EBE\",\n            \"payment_id\": \"382FTTP2005901LD\"\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"4ff2040d-b0b4-469f-b954-1563d59cdf01","name":"Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{api-key}}"},{"key":"Signature","type":"text","value":"{{signature}}"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"disburse\",\n    \"auth\": {\n        \"type\": null,\n        \"secure\": null,\n        \"auth_provider\": \"SunTrust\",\n        \"route_mode\": null\n    },\n    \"transaction\": {\n        \"mock_mode\": \"Live\",\n        \"transaction_ref\": \"{{transaction-ref}}\",\n        \"transaction_desc\": \"A random transaction\",\n        \"transaction_ref_parent\": null,\n        \"amount\": 1000,\n        \"customer\": {\n            \"customer_ref\": \"{{customer_id}}\",\n            \"firstname\": \"Uju\",\n            \"surname\": \"Usmanu\",\n            \"email\": \"ujuusmanu@gmail.com\",\n            \"mobile_no\": \"234802343132\"\n        },\n        \"meta\": {\n            \"a_key\": \"a_meta_value_1\",\n            \"b_key\": \"a_meta_value_2\"\n        },\n        \"details\": {\n            \"destination_account\": \"0099880099\",\n            \"destination_bank_code\": \"076\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Mar 2020 17:02:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"524"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Source and destination account cannot be the same\",\n    \"data\": {\n        \"provider_response_code\": \"83\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"request_reference\": null,\n            \"payment_id\": null\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"483435eb-3c80-4a32-b8c0-bc6b83c6a312","name":"Processing","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{api-key}}"},{"key":"Signature","type":"text","value":"{{signature}}"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"disburse\",\n    \"auth\": {\n        \"type\": null,\n        \"secure\": null,\n        \"auth_provider\": \"SunTrust\",\n        \"route_mode\": null\n    },\n    \"transaction\": {\n        \"mock_mode\": \"Live\",\n        \"transaction_ref\": \"{{transaction-ref}}\",\n        \"transaction_desc\": \"A random transaction\",\n        \"transaction_ref_parent\": null,\n        \"amount\": 1000,\n        \"customer\": {\n            \"customer_ref\": \"{{customer_id}}\",\n            \"firstname\": \"Uju\",\n            \"surname\": \"Usmanu\",\n            \"email\": \"ujuusmanu@gmail.com\",\n            \"mobile_no\": \"234802343132\"\n        },\n        \"meta\": {\n            \"a_key\": \"a_meta_value_1\",\n            \"b_key\": \"a_meta_value_2\"\n        },\n        \"details\": {\n            \"destination_account\": \"0099880099\",\n            \"destination_bank_code\": \"076\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"Processing\",\r\n    \"message\": \"Transaction is currently being processed.\",\r\n    \"data\": {\r\n        \"provider_response_code\": \"00\",\r\n        \"provider\": \"SunTrust\",\r\n        \"errors\": null,\r\n        \"error\": null,\r\n        \"provider_response\": null,\r\n        \"client_info\": {\r\n            \"name\": null,\r\n            \"id\": null,\r\n            \"bank_cbn_code\": null,\r\n            \"bank_name\": null,\r\n            \"console_url\": null,\r\n            \"js_background_image\": null,\r\n            \"css_url\": null,\r\n            \"logo_url\": null,\r\n            \"footer_text\": null,\r\n            \"show_options_icon\": false,\r\n            \"paginate\": false,\r\n            \"paginate_count\": 0,\r\n            \"options\": null,\r\n            \"merchant\": null,\r\n            \"colors\": null,\r\n            \"meta\": null\r\n        }\r\n    }\r\n}"}],"_postman_id":"510a97af-7f1e-4a42-a238-714d4dfd73b8"},{"name":"Collect","id":"ecbb0d70-6082-4d1f-b2e3-add00dd127ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"collect\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_source_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": \"\",\r\n        \"amount\": 10000,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"54da47fd-cfac-4a95-9590-cd8ce070807e","name":"Sucessful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"collect\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_source_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": \"\",\r\n        \"amount\": 10000,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"Successful\",\r\n    \"message\": \"Transaction processed successfully\",\r\n    \"data\": {\r\n        \"provider_response_code\": \"00\",\r\n        \"provider\": \"SunTrust\",\r\n        \"errors\": null,\r\n        \"error\": null,\r\n        \"provider_response\": {\r\n            \"provider_auth_token\": null,\r\n            \"paymentoptions\": [],\r\n            \"transaction_final_amount\": 1000,\r\n            \"reference\": \"8996423353999\",\r\n            \"meta\": {\r\n                \"first_item\": \"item1\",\r\n                \"second_item\": \"item2\"\r\n            }\r\n        },\r\n        \"client_info\": {\r\n            \"name\": null,\r\n            \"id\": null,\r\n            \"bank_cbn_code\": null,\r\n            \"bank_name\": null,\r\n            \"console_url\": null,\r\n            \"js_background_image\": null,\r\n            \"css_url\": null,\r\n            \"logo_url\": null,\r\n            \"footer_text\": null,\r\n            \"show_options_icon\": false,\r\n            \"paginate\": false,\r\n            \"paginate_count\": 0,\r\n            \"options\": null,\r\n            \"merchant\": null,\r\n            \"colors\": null,\r\n            \"meta\": null\r\n        }\r\n    }\r\n}"},{"id":"1bacb11e-a7e0-49de-b5ba-5416b96f50fe","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"collect\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_source_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": \"\",\r\n        \"amount\": 10000,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"Failed\",\r\n    \"message\": \"Invalid auth.secure, please ensure you encrypted the auth.secure in the correct format\",\r\n    \"data\": {\r\n        \"provider_response_code\": null,\r\n        \"provider\": null,\r\n        \"errors\": [\r\n            {\r\n                \"code\": \"01\",\r\n                \"message\": \"Invalid auth.secure, please ensure you encrypted the auth.secure in the correct format\"\r\n            }\r\n        ],\r\n        \"error\": {\r\n            \"code\": \"01\",\r\n            \"message\": \"Invalid auth.secure, please ensure you encrypted the auth.secure in the correct format\"\r\n        },\r\n        \"provider_response\": null,\r\n        \"client_info\": {\r\n            \"name\": null,\r\n            \"id\": null,\r\n            \"bank_cbn_code\": null,\r\n            \"bank_name\": null,\r\n            \"console_url\": null,\r\n            \"js_background_image\": null,\r\n            \"css_url\": null,\r\n            \"logo_url\": null,\r\n            \"footer_text\": null,\r\n            \"show_options_icon\": false,\r\n            \"paginate\": false,\r\n            \"paginate_count\": 0,\r\n            \"options\": null,\r\n            \"merchant\": null,\r\n            \"colors\": null,\r\n            \"meta\": null\r\n        }\r\n    }\r\n}"},{"id":"068e5af3-95a4-46b1-9e86-031766c246dc","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"collect\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_source_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": \"\",\r\n        \"amount\": 10000,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"WaitingForOTP\",\r\n    \"message\": \"Please enter the OTP sent to 2348022****08, use 12345678 as your OTP\",\r\n    \"data\": {\r\n        \"provider_response_code\": \"900T0\",\r\n        \"provider\": \"SunTrust\",\r\n        \"errors\": null,\r\n        \"error\": null,\r\n        \"provider_response\": null,\r\n        \"client_info\": {\r\n            \"name\": null,\r\n            \"id\": null,\r\n            \"bank_cbn_code\": null,\r\n            \"bank_name\": null,\r\n            \"console_url\": null,\r\n            \"js_background_image\": null,\r\n            \"css_url\": null,\r\n            \"logo_url\": null,\r\n            \"footer_text\": null,\r\n            \"show_options_icon\": false,\r\n            \"paginate\": false,\r\n            \"paginate_count\": 0,\r\n            \"options\": null,\r\n            \"merchant\": null,\r\n            \"colors\": null,\r\n            \"meta\": null\r\n        }\r\n    }\r\n}"},{"id":"65442963-b4d7-4188-9107-e4d3ba958e6c","name":"Processing","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"collect\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_source_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": \"\",\r\n        \"amount\": 10000,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"Processing\",\r\n    \"message\": \"Transaction is currently being processed.\",\r\n    \"data\": {\r\n        \"provider_response_code\": \"00\",\r\n        \"provider\": \"SunTrust\",\r\n        \"errors\": null,\r\n        \"error\": null,\r\n        \"provider_response\": null,\r\n        \"client_info\": {\r\n            \"name\": null,\r\n            \"id\": null,\r\n            \"bank_cbn_code\": null,\r\n            \"bank_name\": null,\r\n            \"console_url\": null,\r\n            \"js_background_image\": null,\r\n            \"css_url\": null,\r\n            \"logo_url\": null,\r\n            \"footer_text\": null,\r\n            \"show_options_icon\": false,\r\n            \"paginate\": false,\r\n            \"paginate_count\": 0,\r\n            \"options\": null,\r\n            \"merchant\": null,\r\n            \"colors\": null,\r\n            \"meta\": null\r\n        }\r\n    }\r\n}"}],"_postman_id":"ecbb0d70-6082-4d1f-b2e3-add00dd127ff"},{"name":"Transfer Funds","id":"fcd015ac-8a28-4244-b3d0-3b640a354b6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"transfer_funds\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_source_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 1000,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"destination_account\": \"1020295620\",\r\n            \"destination_bank_code\": \"076\",\r\n            \"otp_override\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"174a7596-a10c-4213-85d4-070c76be69c8","name":"Successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"transfer_funds\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_source_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 1000,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"destination_account\": \"1020295620\",\r\n            \"destination_bank_code\": \"076\",\r\n            \"otp_override\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Transaction processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"destination_institution_code\": \"000016\",\n            \"beneficiary_account_name\": \"JOHN DOE JAMES\",\n            \"beneficiary_account_number\": \"3056433222\",\n            \"beneficiary_kyc_level\": \"3\",\n            \"originator_account_name\": \"James Jane\",\n            \"originator_account_number\": \"0001131256\",\n            \"originator_kyc_level\": \"1\",\n            \"narration\": \"My narration\",\n            \"transaction_final_amount\": 1000,\n            \"reference\": \"1457619876472\",\n            \"meta\": {\n                \"field_key\": \"field_value\"\n            }\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"298c144f-5cd3-4dda-8451-5568cee1c078","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"transfer_funds\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_source_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 1000,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"destination_account\": \"1020295620\",\r\n            \"destination_bank_code\": \"076\",\r\n            \"otp_override\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Invalid Access\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"Application does not have access to Heritagebank\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"Application does not have access to Heritagebank\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"ef182508-8658-44cd-a5b0-2b87bc6ec75e","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"transfer_funds\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_source_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 1000,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"destination_account\": \"1020295620\",\r\n            \"destination_bank_code\": \"076\",\r\n            \"otp_override\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP sent to 2348022****08, use 12345678 as your OTP\",\n    \"data\": {\n        \"provider_response_code\": \"900T0\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"fcd015ac-8a28-4244-b3d0-3b640a354b6f"}],"id":"e63414bb-de2f-4dba-90aa-956e10b3d94a","_postman_id":"e63414bb-de2f-4dba-90aa-956e10b3d94a","description":""},{"name":"Enquiry","item":[{"name":"Get Balance","id":"0df93999-9f75-4267-aca8-d24e10f58ea7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_balance\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2ff6a14f-7724-464d-8e00-c69e9da63d78","name":"Successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_balance\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Transaction processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"account_id\": \"50617644717007\",\n            \"account_type\": \"CURRENT\",\n            \"account_number\": \"6200000766\",\n            \"available_balance\": 2077099,\n            \"ledger_balance\": 2077099,\n            \"minimum_balance\": 0,\n            \"account_class\": \"STFCUR\",\n            \"account_status\": \"ACCOUNT OPEN\",\n            \"currency\": \"NGN\",\n            \"reference\": \"9310153185607\",\n            \"meta\": {\n                \"field_key\": \"field_value\"\n            }\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"c921518e-94cd-478e-8bde-812152e66802","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_balance\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP sent to 2348022****08\",\n    \"data\": {\n        \"provider_response_code\": \"900T0\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"21a28c84-5b84-4e78-9ec2-b3346bc47ab8","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_balance\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Invalid request mode\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"You are not yet enabled for go-live\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"You are not yet enabled for go-live\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"0df93999-9f75-4267-aca8-d24e10f58ea7"},{"name":"Get Statement","id":"b75983fa-b498-43cb-a8d5-b40e1bd5e3cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_statement\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"start_date\": \"2020-02-10\",\r\n            \"end_date\": \"2020-02-14\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bd315b11-77a1-4914-8ea3-0aa362a62067","name":"Successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_statement\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"start_date\": \"2020-02-10\",\r\n            \"end_date\": \"2020-02-14\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Transaction processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"closing_balance\": 1056109,\n            \"opening_balance\": 186279,\n            \"statement_list\": [\n                {\n                    \"transaction_reference\": \"788FTIB20045GJU\",\n                    \"transaction_amount\": 3000563,\n                    \"balance\": 1056109,\n                    \"transaction_type\": \"D\",\n                    \"transaction_date\": \"2020-02-14T00:00:00\",\n                    \"description\": \"MOB.BNKG:011/MUSA TOLULOPE/TRANSFER 30000 FROM 1780***243 TO 1077***364:000008200214190749669842598346\"\n                },\n                {\n                    \"transaction_reference\": \"382FTTP20045000J\",\n                    \"transaction_amount\": 3000,\n                    \"balance\": 4056672,\n                    \"transaction_type\": \"C\",\n                    \"transaction_date\": \"2020-02-14T00:00:00\",\n                    \"description\": \"MB: trans: Trf from CHIJIOKE JULIET JOHN to JOHN DOE JANE\"\n                },\n                {\n                    \"transaction_reference\": \"136n15a200450084\",\n                    \"transaction_amount\": 400,\n                    \"balance\": 3756672,\n                    \"transaction_type\": \"D\",\n                    \"transaction_date\": \"2020-02-14T00:00:00\",\n                    \"description\": \"SMS SERVICE UNCHARGED APPLIED JAN 2020-1780161243\"\n                }\n            ],\n            \"reference\": \"0000318222333334432\",\n            \"meta\": {\n                \"field_key\": \"field_value\"\n            }\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"16335b72-85ad-4628-83a9-e9319598f903","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_statement\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"start_date\": \"2020-02-10\",\r\n            \"end_date\": \"2020-02-14\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP sent to 2348022****08\",\n    \"data\": {\n        \"provider_response_code\": \"900T0\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"af100191-279e-4b3c-9894-6bd51eec69f6","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_statement\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"start_date\": \"2020-02-10\",\r\n            \"end_date\": \"2020-02-14\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Invalid request mode\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"You are not yet enabled for go-live\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"You are not yet enabled for go-live\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"b75983fa-b498-43cb-a8d5-b40e1bd5e3cc"},{"name":"Get Account Min","id":"567d33a5-10d6-4a78-a98e-c9d78d4f7ec1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_accounts_min\",\r\n    \"auth\": {\r\n        \"type\": null,\r\n        \"secure\": null,\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2580a903-7457-4cc2-a494-b8d9a2eab5fc","name":"Successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_accounts_min\",\r\n    \"auth\": {\r\n        \"type\": null,\r\n        \"secure\": null,\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Transaction processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"accounts\": [\n                {\n                    \"account_number\": \"009****000\",\n                    \"account_name\": \"Ola Waheed\",\n                    \"bank_name\": \"FBN\",\n                    \"bank_code\": \"011\"\n                },\n                {\n                    \"account_number\": \"009****000\",\n                    \"account_name\": \"Ola Waheed\",\n                    \"bank_name\": \"FBN\",\n                    \"bank_code\": \"011\"\n                }\n            ],\n            \"reference\": \"000022200225154318222333334432\",\n            \"meta\": {\n                \"field_key\": \"field_value\"\n            }\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"9e3303d7-84c5-4c2c-9565-5ebbdbbb05cf","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_accounts_min\",\r\n    \"auth\": {\r\n        \"type\": null,\r\n        \"secure\": null,\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Invalid request mode\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"You are not yet enabled for go-live\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"You are not yet enabled for go-live\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"633ce4d3-0235-4dfc-8183-bca0b95fc382","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_accounts_min\",\r\n    \"auth\": {\r\n        \"type\": null,\r\n        \"secure\": null,\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP sent to 2348022****08, use 12345678 as your OTP\",\n    \"data\": {\n        \"provider_response_code\": \"900T0\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"567d33a5-10d6-4a78-a98e-c9d78d4f7ec1"},{"name":"Get Account Mid","id":"557389c1-b026-4aee-8503-2acea49d14c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_accounts_mid\",\r\n    \"auth\": {\r\n        \"type\": null,\r\n        \"secure\": null,\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5f048ec8-e1ec-47da-a488-2ac48613e33e","name":"Successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_accounts_mid\",\r\n    \"auth\": {\r\n        \"type\": null,\r\n        \"secure\": null,\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Transaction processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"accounts\": [\n                {\n                    \"account_number\": \"00999999000\",\n                    \"account_name\": \"Ola Waheed\",\n                    \"bank_name\": \"FBN\",\n                    \"bank_code\": \"011\"\n                },\n                {\n                    \"account_number\": \"0099999000\",\n                    \"account_name\": \"Ola Waheed\",\n                    \"bank_name\": \"FBN\",\n                    \"bank_code\": \"011\"\n                }\n            ],\n            \"reference\": \"8358663209080\",\n            \"meta\": {\n                \"field_key\": \"field_value\"\n            }\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"8993f3a0-44f6-4d59-8ee6-45303bdb9caf","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_accounts_mid\",\r\n    \"auth\": {\r\n        \"type\": null,\r\n        \"secure\": null,\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Invalid request mode\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"You are not yet enabled for go-live\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"You are not yet enabled for go-live\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"a8a501ca-0196-4fd8-9f8f-168dca7c2534","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"get_accounts_mid\",\r\n    \"auth\": {\r\n        \"type\": null,\r\n        \"secure\": null,\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP sent to 2348022****08\",\n    \"data\": {\n        \"provider_response_code\": \"900T0\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"557389c1-b026-4aee-8503-2acea49d14c8"}],"id":"d0ced0c8-cc62-4921-b015-358cf7221f41","_postman_id":"d0ced0c8-cc62-4921-b015-358cf7221f41","description":""},{"name":"LookUp","item":[{"name":"Lookup Account Min","id":"0188fbe3-5c9b-44e2-9f70-ec864de09f85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_account_min\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f17bd27a-2833-4860-a7c0-504d78a668e0","name":"Successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_account_min\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Account details retrieved Sucessfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"customer_id\": \"007935125\",\n            \"account_name\": \"BOLA SALAMI\",\n            \"account_number\": \"1780161243\",\n            \"last_name\": \"SALAMI\",\n            \"first_name\": \"BOLA\",\n            \"middle_name\": \"-\",\n            \"gender\": \"Female\",\n            \"account_currency\": \"NGN\",\n            \"dob\": \"1989-06-06-10-00-00\",\n            \"reference\": \"1228519650461\",\n            \"meta\": {\n                \"field_key\": \"field_value\"\n            }\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"ef1aa6e8-fdaa-4e81-b959-d781ea60fd1a","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_account_min\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Invalid request mode\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"You are not yet enabled for go-live\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"You are not yet enabled for go-live\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"3728f360-b176-4ae8-a8e3-132d0bf889d1","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_account_min\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP sent to 2348022****08, use 12345678 as your OTP\",\n    \"data\": {\n        \"provider_response_code\": \"900T0\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"0188fbe3-5c9b-44e2-9f70-ec864de09f85"},{"name":"Lookup Account Mid","id":"7469e700-f5a1-4476-b3d0-c89dcce88b62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_account_mid\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"234802343132\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"otp_override\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2a91f2bb-c888-4f57-b064-670f0a57a33b","name":"Successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_account_mid\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"234802343132\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"otp_override\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Account details received\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"customer_id\": \"007935125\",\n            \"account_name\": \"BOLA SALAMI\",\n            \"first_name\": \"BOLA\",\n            \"last_name\": \"SALAMI\",\n            \"middle_name\": \"-\",\n            \"gender\": \"Male\",\n            \"account_currency\": \"NGN\",\n            \"dob\": \"1989-06-06-10-00-00\",\n            \"scheme_code\": \"STFCUR\",\n            \"account_status\": \"ACCOUNT OPEN\",\n            \"account_number\": \"1780161243\",\n            \"bvn\": \"22153578379\",\n            \"mobile_number\": \"09081690629\",\n            \"meta\": {\n                \"field_key\": \"field_value\"\n            }\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"b7c7b631-d5e5-49ec-9a34-fc7e866b41de","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_account_mid\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"234802343132\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"otp_override\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP sent to 2348022****08, use 12345678 as your OTP\",\n    \"data\": {\n        \"provider_response_code\": \"900T0\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"8670b9bb-3d1a-4b5c-b35c-667959a771f8","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_account_mid\",\r\n    \"auth\": {\r\n        \"type\": \"bank.account\",\r\n        \"secure\": \"{{encrypted_account_number}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"234802343132\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"{{customer_id}}\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"otp_override\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Invalid request mode\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"You are not yet enabled for go-live\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"You are not yet enabled for go-live\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"7469e700-f5a1-4476-b3d0-c89dcce88b62"},{"name":"Lookup BVN Max","id":"5fa17499-a81d-4336-b118-fabdf3cc496b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_bvn_max\",\r\n    \"auth\": {\r\n        \"type\": \"bvn\",\r\n        \"secure\": \"{{encrypted_bvn}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"include_image\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c34243af-b606-4e41-9cbe-8ec163f50871","name":"Successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_bvn_max\",\r\n    \"auth\": {\r\n        \"type\": \"bvn\",\r\n        \"secure\": \"{{encrypted_bvn}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"include_image\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Transaction processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"reference\": \"7787178229617\",\n            \"bvn\": \"12345678\",\n            \"first_name\": \"Uju\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Usmanu\",\n            \"dob\": \"1990-12-22\",\n            \"phone_number1\": \"07037608648\",\n            \"phone_number2\": \"\",\n            \"registration_date\": \"1990-12-22\",\n            \"enrollment_bank\": \"011\",\n            \"enrollment_branch\": \"MATORI\",\n            \"email\": \"john.doe@gmail.com\",\n            \"gender\": \"Male\",\n            \"level_of_account\": \"Level 2 - Medium Level Accounts\",\n            \"lga_of_origin\": \"Owerri West\",\n            \"lga_of_residence\": \"Ikeja\",\n            \"marital_status\": \"Single\",\n            \"nin\": \"77766492344\",\n            \"name_on_card\": \"John Jane Doe\",\n            \"nationality\": \"Nigeria\",\n            \"residential_address\": \"34, Banjo Street, Ikeja, Lagos\",\n            \"state_of_origin\": \"Imo State\",\n            \"state_of_residence\": \"Lagos State\",\n            \"title\": \"Mr\",\n            \"watchlisted\": \"NO\",\n            \"base64_image\": \"{{Base64Image}}\",\n            \"meta\": {\n                \"first_item\": \"item1\",\n                \"second_item\": \"item2\"\n            }\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"11b15d26-6093-4950-8f93-35adfa0ff626","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_bvn_max\",\r\n    \"auth\": {\r\n        \"type\": \"bvn\",\r\n        \"secure\": \"{{encrypted_bvn}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"include_image\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"1345c056-db84-43f6-a107-f779bbfe5353","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_bvn_max\",\r\n    \"auth\": {\r\n        \"type\": \"bvn\",\r\n        \"secure\": \"{{encrypted_bvn}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": {\r\n            \"include_image\": true\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"message\": \"Invalid auth type specified for the service\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"Valid auth types for lookup bvn max are bvn\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"Valid auth types for lookup bvn max are bvn\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"5fa17499-a81d-4336-b118-fabdf3cc496b"},{"name":"Lookup BVN Mid","id":"056f0cb1-908f-482b-b27d-cf22383bac57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_bvn_mid\",\r\n    \"auth\": {\r\n        \"type\": \"bvn\",\r\n        \"secure\": \"{{encrypted_bvn}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2d2bca7e-9448-4533-8f7d-83ef0771af34","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_bvn_mid\",\r\n    \"auth\": {\r\n        \"type\": \"bvn\",\r\n        \"secure\": \"{{encrypted_bvn}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP sent to 2348022****08, use 12345678 as your OTP\",\n    \"data\": {\n        \"provider_response_code\": \"900T0\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"52d2ea8a-9f2e-4202-ad4b-899312f65fc5","name":"Successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_bvn_mid\",\r\n    \"auth\": {\r\n        \"type\": \"bvn\",\r\n        \"secure\": \"{{encrypted_bvn}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Transaction processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"reference\": \"61805692404\",\n            \"bvn\": \"12345678\",\n            \"first_name\": \"Uju\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Usmanu\",\n            \"dob\": \"1990-12-22\",\n            \"phone_number1\": \"07037608648\",\n            \"phone_number2\": \"\",\n            \"registration_date\": \"1990-12-22\",\n            \"email\": \"john.doe@gmail.com\",\n            \"gender\": \"Male\",\n            \"level_of_account\": \"Level 2 - Medium Level Accounts\",\n            \"lga_of_origin\": \"Owerri West\",\n            \"lga_of_residence\": \"Ikeja\",\n            \"marital_status\": \"Single\",\n            \"meta\": {\n                \"first_item\": \"item1\",\n                \"second_item\": \"item2\"\n            }\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"651d000b-ebfc-44ce-bbed-350c8b65fb07","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"request_ref\": \"{{request-ref}}\",\r\n    \"request_type\": \"lookup_bvn_mid\",\r\n    \"auth\": {\r\n        \"type\": \"bvn\",\r\n        \"secure\": \"{{encrypted_bvn}}\",\r\n        \"auth_provider\": \"SunTrust\",\r\n        \"route_mode\": null\r\n    },\r\n    \"transaction\": {\r\n        \"mock_mode\": \"Live\",\r\n        \"transaction_ref\": \"{{transaction-ref}}\",\r\n        \"transaction_desc\": \"A random transaction\",\r\n        \"transaction_ref_parent\": null,\r\n        \"amount\": 0,\r\n        \"customer\": {\r\n            \"customer_ref\": \"234802343132\",\r\n            \"firstname\": \"Uju\",\r\n            \"surname\": \"Usmanu\",\r\n            \"email\": \"ujuusmanu@gmail.com\",\r\n            \"mobile_no\": \"234802343132\"\r\n        },\r\n        \"meta\": {\r\n            \"a_key\": \"a_meta_value_1\",\r\n            \"b_key\": \"a_meta_value_2\"\r\n        },\r\n        \"details\": null\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"message\": \"Invalid auth type specified for the service\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"Valid auth types for lookup bvn mid are bvn\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"Valid auth types for lookup bvn mid are bvn\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"056f0cb1-908f-482b-b27d-cf22383bac57"},{"name":"Lookup BVN Min","id":"c33e604a-3cd0-4ff6-9176-7c4b25d18864","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"request_ref\":\"{{request-ref}}\", \r\n  \"request_type\":\"lookup_bvn_min\",\r\n  \"auth\": {\r\n    \"type\": \"bvn\", \r\n    \"secure\": \"{{auth.bvn}}\",\r\n    \"auth_provider\": \"SunTrust\",\r\n    \"route_mode\": null\r\n  },\r\n  \"transaction\": {\r\n    \"mock_mode\": \"Live\", \r\n    \"transaction_ref\": \"{{transaction-ref}}\", \r\n    \"transaction_desc\": \"A random transaction\", \r\n    \"transaction_ref_parent\": null, \r\n    \"amount\": 0,\r\n    \"customer\":{\r\n    \t\"customer_ref\": \"{{customer_id}}\",\r\n    \t\"firstname\": \"Uju\",\r\n      \"surname\": \"Usmanu\",\r\n    \t\"email\": \"ujuusmanu@gmail.com\",\r\n    \t\"mobile_no\": \"{{customer_mobile_no}}\"\r\n    },\r\n    \"meta\":{\r\n    \t\"a_key\":\"a_meta_value_1\",\r\n    \t\"b_key\":\"a_meta_value_2\"\r\n    },\r\n    \"details\": {\r\n    \t\"dob\": \"1990-09-12\"\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact","urlObject":{"path":["v2","transact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e159125f-63b9-4823-8c82-7c8d7c5348bd","name":"Successful","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"request_ref\":\"{{request-ref}}\", \r\n  \"request_type\":\"lookup_bvn_min\",\r\n  \"auth\": {\r\n    \"type\": \"bvn\", \r\n    \"secure\": \"{{auth.bvn}}\",\r\n    \"auth_provider\": \"SunTrust\",\r\n    \"route_mode\": null\r\n  },\r\n  \"transaction\": {\r\n    \"mock_mode\": \"Live\", \r\n    \"transaction_ref\": \"{{transaction-ref}}\", \r\n    \"transaction_desc\": \"A random transaction\", \r\n    \"transaction_ref_parent\": null, \r\n    \"amount\": 0,\r\n    \"customer\":{\r\n    \t\"customer_ref\": \"{{customer_id}}\",\r\n    \t\"firstname\": \"Uju\",\r\n      \"surname\": \"Usmanu\",\r\n    \t\"email\": \"ujuusmanu@gmail.com\",\r\n    \t\"mobile_no\": \"{{customer_mobile_no}}\"\r\n    },\r\n    \"meta\":{\r\n    \t\"a_key\":\"a_meta_value_1\",\r\n    \t\"b_key\":\"a_meta_value_2\"\r\n    },\r\n    \"details\": {\r\n    \t\"dob\": \"1990-09-12\"\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Transaction processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"bvn\": \"12345678\",\n            \"first_name\": true,\n            \"last_name\": true,\n            \"dob\": true,\n            \"reference\": \"7868305156953\",\n            \"meta\": {\n                \"first_item\": \"item1\",\n                \"second_item\": \"item2\"\n            }\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"7463c43b-aefc-421c-ab33-88cc8eeb4cf2","name":"Waiting For OTP","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"request_ref\":\"{{request-ref}}\", \r\n  \"request_type\":\"lookup_bvn_min\",\r\n  \"auth\": {\r\n    \"type\": \"bvn\", \r\n    \"secure\": \"{{auth.bvn}}\",\r\n    \"auth_provider\": \"SunTrust\",\r\n    \"route_mode\": null\r\n  },\r\n  \"transaction\": {\r\n    \"mock_mode\": \"Live\", \r\n    \"transaction_ref\": \"{{transaction-ref}}\", \r\n    \"transaction_desc\": \"A random transaction\", \r\n    \"transaction_ref_parent\": null, \r\n    \"amount\": 0,\r\n    \"customer\":{\r\n    \t\"customer_ref\": \"{{customer_id}}\",\r\n    \t\"firstname\": \"Uju\",\r\n      \"surname\": \"Usmanu\",\r\n    \t\"email\": \"ujuusmanu@gmail.com\",\r\n    \t\"mobile_no\": \"{{customer_mobile_no}}\"\r\n    },\r\n    \"meta\":{\r\n    \t\"a_key\":\"a_meta_value_1\",\r\n    \t\"b_key\":\"a_meta_value_2\"\r\n    },\r\n    \"details\": {\r\n    \t\"dob\": \"1990-09-12\"\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP sent to 2348022****08, use 12345678 as your OTP\",\n    \"data\": {\n        \"provider_response_code\": \"900T0\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"},{"id":"a54a5193-d2af-4470-9f6b-0a79710c5dc3","name":"Failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"request_ref\":\"{{request-ref}}\", \r\n  \"request_type\":\"lookup_bvn_min\",\r\n  \"auth\": {\r\n    \"type\": \"bvn\", \r\n    \"secure\": \"{{auth.bvn}}\",\r\n    \"auth_provider\": \"SunTrust\",\r\n    \"route_mode\": null\r\n  },\r\n  \"transaction\": {\r\n    \"mock_mode\": \"Live\", \r\n    \"transaction_ref\": \"{{transaction-ref}}\", \r\n    \"transaction_desc\": \"A random transaction\", \r\n    \"transaction_ref_parent\": null, \r\n    \"amount\": 0,\r\n    \"customer\":{\r\n    \t\"customer_ref\": \"{{customer_id}}\",\r\n    \t\"firstname\": \"Uju\",\r\n      \"surname\": \"Usmanu\",\r\n    \t\"email\": \"ujuusmanu@gmail.com\",\r\n    \t\"mobile_no\": \"{{customer_mobile_no}}\"\r\n    },\r\n    \"meta\":{\r\n    \t\"a_key\":\"a_meta_value_1\",\r\n    \t\"b_key\":\"a_meta_value_2\"\r\n    },\r\n    \"details\": {\r\n    \t\"dob\": \"1990-09-12\"\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"failed\",\n    \"message\": \"Invalid auth type specified for the service\",\n    \"data\": {\n        \"options\": null,\n        \"provider_response_code\": null,\n        \"provider\": null,\n        \"errors\": [\n            {\n                \"code\": \"01\",\n                \"message\": \"Valid auth types for lookup bvn min are bvn\"\n            }\n        ],\n        \"error\": {\n            \"code\": \"01\",\n            \"message\": \"Valid auth types for lookup bvn min are bvn\"\n        },\n        \"provider_response\": null,\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"c33e604a-3cd0-4ff6-9176-7c4b25d18864"}],"id":"75362c50-88bd-420d-88d9-455b35670129","_postman_id":"75362c50-88bd-420d-88d9-455b35670129","description":""},{"name":"Utll","item":[{"name":"Validate Transaction","event":[{"listen":"test","script":{"id":"e78edaf2-92e3-4b5c-9507-583685a0531e","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// example using pm.response.to.be*","pm.test(\"response must be valid and have a body\", function () {","     // assert that the status code is 200","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants","     // assert that the response has a valid JSON body","     pm.response.to.be.withBody;","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include(\"Successful\");","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include(\"WaitingForOTP\");","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"53ec5afc-4c03-4ef1-a2e8-1de987b20042","exec":["//import the MD5 hashing function","eval(pm.globals.get(\"md5\"));","","//Autogenerate request-ref and transaction-ref","var min = 10000000000000;","var max = 99999999999999;","var transRef = (Math.random() * (max - min) + min).round().toString();","var reqRef = transRef + '01';","pm.environment.set(\"request-ref\", reqRef);","pm.environment.set(\"transaction-ref\", transRef);","pm.environment.set(\"signature\", MD5(reqRef + ';'+ pm.environment.get(\"secret-key\")));","pm.globals.set(\"gl_transRef\", transRef);"],"type":"text/javascript"}}],"id":"ba3fdac5-09c5-45ad-90ab-611fbdbd25e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{api-key}}"},{"key":"Signature","type":"text","value":" {{signature}}"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"collect\",\n    \"auth\": {\n        \"secure\": \"boif0gxwkZu3XYOwAD/MkA==\",\n        \"auth_provider\": \"SunTrust\"\n    },\n    \"transaction\": {\n        \"transaction_ref\": \"67507990331863\"\n    }\n}"},"url":"{{url}}/v2/transact/validate","description":"<p>Use this endpoint as a follow-up call for OTP validation. Specify the transaction ref of the transaction to be validated in the <code>transaction.transaction_ref</code> field.</p>\n<p>Replace the value <code>request_type</code> with the corresponding service name.</p>\n<p>The OTP must be encrypted with the Triple DES encryption algorithm and should be placed in the <code>auth.secure</code> field.</p>\n<p>For information on how to encrypt <code>auth.secure</code> value, see <a href=\"#encryption-of-secure-element\">here</a>.</p>\n<h4 id=\"possible-status-values\">Possible status values</h4>\n<ul>\n<li><strong>Successful</strong>: Success</li>\n<li><strong>[Anything else]</strong>: Error. Read the errors object(s)</li>\n</ul>\n","urlObject":{"path":["v2","transact","validate"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"abfe5abe-8370-4642-aa9f-1a5a1b372202","name":"Failed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api-key}}","type":"text"},{"key":"Signature","value":" MD5Hash(request-ref;client-secret)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"request-ref\":\"000000003601\",//unique reference for this call\n  \"request-type\":\"airtime\",//set the value of 'type' to this\n  \"auth\": {\n    \"type\": \"card\",//set auth.type to this \n    \"secure\": \"{{auth.secure}}\"//encrypted card details\n  },\n  \"transaction\": {\n    \"amount\": \"13600\",//amount in kobo\n    \"transaction-ref\": \"0000000036\",//a unique ref for this transaction\n    \"transaction-desc\": \"Payment for services\",//a description\n    \"transaction-ref-parent\": \"\",//if this is a reattempt of an old trxn, put the ref of the old one here\n    \"customer\":{\n    \t\"customer-ref\": \"2348022221412\",//the mobile number to top up\n    \t\"firstname\": \"Okwe\",\n  \t\t\"surname\": \"Adye\",\n    \t\"email\": \"ope99oye@gmail.com\",\n    \t\"mobile-no\": \"2348099921412\"//the mobile number to top up\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/payments/basic"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"There was an error processing your transaction\",\n    \"data\": {\n        \"provider-responde-code\": \"91\",\n        \"provider\": \"SunTrust\",\n        \"errors\": [\n\t\t\t{\n\t\t\t\t\"code\": \"70013\",\n\t\t\t\t\"message\": \"70013 - R:Details of this error\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"code\": \"70013\",\n\t\t\t\t\"message\": \"70013 - R:Details of this error\"\n\t\t\t}\n\t\t],\n\t\t\"error\": {\n\t\t\t\"code\": \"70013\",\n\t\t\t\"message\": \"70013 - R:Details of the primary error.\"\n\t\t},\n        \"charge-token\": \"Kz5Dev7BenV9HmLNB\",\n        \"paymentoptions\": []\n    }\n}"},{"id":"64f0e1d6-caef-4afd-af75-2eedecdd207e","name":"Successful","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{apiKey}}","type":"text"},{"key":"Signature","value":"{{MD5Hash(request-ref;client-secret)}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"request-ref\":\"000000003601\",\n  \"request-type\":\"airtime\",\n  \"auth\": {\n    \"type\": \"card\",\n    \"secure\": \"{{auth.secure}}\"\n  },\n  \"transaction\": {\n    \"amount\": \"13600\",\n    \"transaction-ref\": \"0000000036\",\n    \"transaction-desc\": \"Payment for services\",\n    \"transaction-ref-parent\": \"\",\n    \"customer\":{\n    \t\"customer-ref\": \"2348029921412\",\n    \t\"firstname\": \"Okwe\",\n  \t\t\"surname\": \"Adye\",\n    \t\"email\": \"ope99oye@gmail.com\",\n    \t\"mobile-no\": \"2348099921412\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/payments/basic"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"The transaction has been processed successully\",\n    \"data\": {\n    \t\"provider-responde-code\":\"00\",\n    \t\"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"charge-token\": \"Kz5Dev7BenV9HmLNB\",\n        \"paymentoptions\": []\n    }\n}"},{"id":"a61af560-9ad5-43e7-857b-6919965d621f","name":"WaitingForOTP","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{api-key}}","type":"text"},{"key":"Signature","value":" MD5Hash(request-ref;client-secret)","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"request-ref\":\"000000003601\",\n  \"request-type\":\"airtime\",\n  \"auth\": {\n    \"type\": \"card\",\n    \"secure\": \"{{auth.secure}}\"\n  },\n  \"transaction\": {\n    \"amount\": \"13600\",\n    \"transaction-ref\": \"0000000036\",\n    \"transaction-desc\": \"Payment for services\",\n    \"transaction-ref-parent\": \"\",\n    \"customer\":{\n    \t\"customer-ref\": \"2348022221412\",\n    \t\"firstname\": \"Okwe\",\n  \t\t\"surname\": \"Adye\",\n    \t\"email\": \"ope99oye@gmail.com\",\n    \t\"mobile-no\": \"2348099921412\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v1/payments/basic"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"WaitingForOTP\",\n    \"message\": \"Please enter the OTP that was sent to 234****1234.\",\n    \"data\": {\n    \t\"provider-responde-code\":\"T0\",\n    \t\"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"charge-token\": null,\n        \"paymentoptions\": []\n    }\n}"}],"_postman_id":"ba3fdac5-09c5-45ad-90ab-611fbdbd25e9"},{"name":"Query Transaction","event":[{"listen":"test","script":{"id":"f3814448-5505-4415-9cca-f73bc784270d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// example using pm.response.to.be*","pm.test(\"response must be valid and have a body\", function () {","     // assert that the status code is 200","     pm.response.to.be.ok; // info, success, redirection, clientError,  serverError, are other variants","     // assert that the response has a valid JSON body","     pm.response.to.be.withBody;","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include(\"Successful\");","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include(\"WaitingForOTP\");","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"12d02a31-232d-4815-80d1-e260f9638803","exec":["//import the MD5 hashing function","eval(pm.globals.get(\"md5\"));","","//Autogenerate request-ref and transaction-ref","var min = 10000000000000;","var max = 99999999999999;","var transRef = (Math.random() * (max - min) + min).round().toString();","var reqRef = transRef + '01';","pm.environment.set(\"request-ref\", reqRef);","pm.environment.set(\"transaction-ref\", transRef);","pm.environment.set(\"signature\", MD5(reqRef + ';'+ pm.environment.get(\"secret-key\")));","pm.globals.set(\"gl_transRef\", transRef);"],"type":"text/javascript"}}],"id":"1fe629d1-4cf8-410d-97cb-418655ff51c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer {{api-key}}"},{"key":"Signature","type":"text","value":" {{signature}}"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"disburse\",\n    \"auth\": {\n        \"secure\": null,\n        \"auth_provider\": \"SunTrust\"\n    },\n    \"transaction\": {\n        \"transaction_ref\": \"{{transaction-ref}}\"\n    }\n}"},"url":"{{url}}/v2/transact/query","description":"<p>Use this endpoint for querying transactions. Specify the transaction ref of the transaction to be queried in the <code>transaction.transaction_ref</code> field.</p>\n<p>Specify the service name in the <code>request_type</code> field.</p>\n<h4 id=\"possible-status-values\">Possible status values</h4>\n<ul>\n<li><strong>Successful</strong>: Success</li>\n<li><strong>[Anything else]</strong>: Error. Read the errors object(s)</li>\n</ul>\n","urlObject":{"path":["v2","transact","query"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bbdf9e26-c7bc-46e1-9641-d36f109f6204","name":"Successful","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{apiKey}}","type":"text"},{"key":"Signature","value":"{{MD5Hash(request-ref;client-secret)}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"request_ref\": \"{{request-ref}}\",\n    \"request_type\": \"disburse\",\n    \"auth\": {\n        \"secure\": null,\n        \"auth_provider\": \"SunTrust\"\n    },\n    \"transaction\": {\n        \"transaction_ref\": \"{{transaction-ref}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/v2/transact/query"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Successful\",\n    \"message\": \"Transaction processed successfully\",\n    \"data\": {\n        \"provider_response_code\": \"00\",\n        \"provider\": \"SunTrust\",\n        \"errors\": null,\n        \"error\": null,\n        \"provider_response\": {\n            \"destination_institution_code\": \"076\",\n            \"beneficiary_account_name\": \"JAMES BLUE\",\n            \"beneficiary_account_number\": \"0099880099\",\n            \"beneficiary_kyc_level\": \"\",\n            \"originator_account_name\": \"\",\n            \"originator_account_number\": \"1100009909\",\n            \"originator_kyc_level\": \"\",\n            \"narration\": \"A random transaction\",\n            \"transaction_final_amount\": 1000,\n            \"reference\": \"C3DA541CA20740659031949CD3441EBE\",\n            \"payment_id\": \"382FTTP2005901LD\"\n        },\n        \"client_info\": {\n            \"name\": null,\n            \"id\": null,\n            \"bank_cbn_code\": null,\n            \"bank_name\": null,\n            \"console_url\": null,\n            \"js_background_image\": null,\n            \"css_url\": null,\n            \"logo_url\": null,\n            \"footer_text\": null,\n            \"show_options_icon\": false,\n            \"paginate\": false,\n            \"paginate_count\": 0,\n            \"options\": null,\n            \"merchant\": null,\n            \"colors\": null,\n            \"meta\": null\n        }\n    }\n}"}],"_postman_id":"1fe629d1-4cf8-410d-97cb-418655ff51c6"}],"id":"0c4946c3-d24a-4bd7-b5c7-270c2cd33929","_postman_id":"0c4946c3-d24a-4bd7-b5c7-270c2cd33929","description":""}]}