{"info":{"_postman_id":"bed859a9-147b-4c37-b097-a8223b10f20b","name":"NeoCollect API","description":"<html><head></head><body><blockquote>\n<p><strong>What is Direct Debit?</strong><br>Direct debit is a process by which you can automatically trigger payments from an enrolled bank account without a debit card or having the account owner do a transfer.<br>Consent to debit accounts is granted through a contract called a <em>Mandate.</em> </p>\n</blockquote>\n<p>The Neocollect API enables you to:</p>\n<ul>\n<li><p>Discover your clients' bank accounts with various banks</p>\n</li>\n<li><p>Setup and manage paper or electronic direct debit mandates</p>\n</li>\n<li><p>Directly Debit your customer's bank accounts at variable or scheduled intervals</p>\n</li>\n</ul>\n<h3 id=\"the-process\">The Process</h3>\n<p>To charge your customers' bank accounts you have do the following:</p>\n<ol>\n<li><p>Add them as a customer using the <strong>Create Customer</strong> endpoint.</p>\n</li>\n<li><p><em>(Optional)</em> Call the <strong>Account Number Discovery</strong> endpoint to discover <strong>all</strong> their bank accounts if you want to create a global mandate. This step isn't required if you already know the account(s) you wish to debit. A good use case for account discovery is lending.</p>\n</li>\n<li><p>Create one or more mandates on the accounts you want to debit using the <strong>Create Mandate</strong> endpoint.</p>\n</li>\n<li><p>Debit the customers account(s) using the <strong>Charge Mandate</strong> endpoint</p>\n</li>\n</ol>\n<h1 id=\"using-the-api\">Using The API</h1>\n<blockquote>\n<p><strong>✋🏾Before you begin!</strong><br>You should <a href=\"https://app.neocollect.ng/auth/sign-up\">create a free Neocollect account</a> that you can test the API against. We will provide you with test keys that you can use to make API calls. </p>\n</blockquote>\n<h3 id=\"authentication\">Authentication</h3>\n<p>Requests to the Neocollect api are authenticated with session tokens. Every request you make to the api must include a session token passed in an <code>X-Auth-Token</code> header. To get your session token, you should call the <a href=\"https://go.postman.co/workspace/95ae6f86-ca78-4e11-bd69-c77578030e76/documentation/14568179-bed859a9-147b-4c37-b097-a8223b10f20b?entity=request-0dfa380a-5dcb-49db-bb0a-9868860d5978\">Get Token</a> endpoint with your assigned secret key and key id. You are encouraged to persist this token using a secret manager or KV store.</p>\n<blockquote>\n<p>⚠️ <strong>KEYS MUST BE KEPT SECRET AT ALL TIMES</strong> ⚠️<br>Please note that your key-id, secret-key and any auth tokens generated by them must be kept secret at all times. We <strong>strongly</strong> advise that you do not store these keyes in plain text. </p>\n</blockquote>\n<h3 id=\"authorization\">Authorization</h3>\n<p>Permissions-Based Access Control (PBAC) is used to manage access to resources. Features not included in the API resources list can only be accessed through your dashboard.</p>\n<h3 id=\"error-handling\">Error Handling</h3>\n<p>Errors from this api will either be in the form of a 500 - Our fault, or 4** - your fault. 4** errors will usually provide more context about the error in the <code>message</code> field of the response object. If the message field contains the string <code>\"field errors\"</code> then you may parse the <code>\"data\"</code> field of the response object to get even more detail about which specific field in your request object was invalid.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"message\": \"field errors\",\n    \"data\": {\n        \"first_name\": \"Customer's first name is required\",\n        \"email\": \"This email address already belongs to an existing user\"\n    }\n}\n\n</code></pre>\n<h1 id=\"customers\">Customers</h1>\n<p>A customer is an individual with one or more bank accounts which you want to be able to collect direct payments from. Customer's must have a bvn and must provide consent before you can succesfuly create mandates for them.</p>\n<h3 id=\"adding-customers\">Adding Customers</h3>\n<p>The first step to charging users with NeoCollect is to profile them on our service. You can do this easily using the <strong>Create Customer endpoint.</strong> After succesfully adding a customer, you will be able to do an <strong>Account Number Discovery</strong> or <strong>Create Mandates</strong> for later debit.</p>\n<p>You can view all added customers using the <strong>List Customers</strong> endpoint or a specific customer using the <strong>Get Customer</strong> endpoint.</p>\n<p>You only need to add a customer once. There is no limit to the number of mandates you can create per customer.</p>\n<h1 id=\"account-number-discovery\">Account Number Discovery</h1>\n<p>Account discovery is a process that allows you to view a list of all bank accounts you customer has as long as you know their BVN and have their consent.</p>\n<p>Your customers must complete an authorization flow before this information can be provided to you. To begin, simply call the <strong>Account Discovery</strong> endpoint. The endpoint will return a url which you can pass to your customer through your application or by email. The link allows the customer to complete a 2FA process which confirms that they have given you authority to view their account numbers.</p>\n<p>Once they complete the process their account numbers will now be visible from the dashboard or in the <code>bank_accounts</code> field of the <strong>Get Customer</strong> response. You can now initiate electronic or paper mandate creation on one or all of the customer's bank accounts.</p>\n<h1 id=\"mandates\">Mandates</h1>\n<p>A mandate represents the authority a customer has given you to debit their account(s). Mandates can be authorized electronically (by transfer) or manually (by signature).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th><strong>Electronic</strong></th>\n<th>Paper</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Processing Time</strong></td>\n<td>Instant</td>\n<td>Up to 3 days</td>\n</tr>\n<tr>\n<td><strong>Authorization</strong></td>\n<td>Customer does a transfer of N50 from the account in question to a designated account. This confirms ownership of the account.</td>\n<td>Customer must sign a paper instruction which should be uploaded to our servers using the <strong>Sign Mandate</strong> endpoint.</td>\n</tr>\n<tr>\n<td><strong>Global Authorization</strong>  <br>(This is when a user only authorizes once and a global mandate is setup across <strong>all</strong> their bank accounts.)</td>\n<td>Not Possible, the user will have to authorize each account individually.</td>\n<td><strong>Available</strong>  <br>Users can sign a single mandate and grant consent to debit all their accounts.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"mandate-lifecycle\">Mandate Lifecycle</h2>\n<p>Mandates go through three stages:</p>\n<ol>\n<li><p>Initiation by you. This is when you create the mandate for the customer to authorize.</p>\n</li>\n<li><p>Authentication by the customer: Customers can authorize mandates in two ways</p>\n<ol>\n<li><p><strong>Electronically:</strong> by doing a transfer of N50.00 from the account they want to give you authority to debit. This instantly authorizes the mandate and you can begin to debit the account within a few hours.</p>\n</li>\n<li><p><strong>Manually:</strong> by signing a paper mandate and uploading a picture of the signed mandate to our system (this can be done by api or through our dashboard by you)</p>\n</li>\n</ol>\n</li>\n<li><p>Authorization by the client's bank:</p>\n<ol>\n<li><p>Instant for electronic mandates.</p>\n</li>\n<li><p>For paper mandates: we immedaitely share the mandate with your customer's bank to verify the signature. If the bank takes more than three days to respond, the mandate is aoutomatically approved. When this happens, we send you a webhook notification.</p>\n</li>\n</ol>\n</li>\n</ol>\n<h1 id=\"direct-debit\">Direct Debit</h1>\n<h3 id=\"charging-a-mandate\">Charging a Mandate</h3>\n<p>You can charge a mandate in two ways:</p>\n<ol>\n<li><p><strong>Direct Charge:</strong><br> Use the <strong>Charge Mandate</strong> endpoint via the dashboard or API to directly debit a customer's account.</p>\n</li>\n<li><p><strong>Schedules:</strong><br> Automate your mandate charges by creating schedules. Using the <strong>Update Mandate</strong> endpoint, you can set up and configure charge schedules. Note that mandates can only be charged within the <strong>Start Date</strong> and <strong>End Date</strong> of the selected mandate.</p>\n</li>\n</ol>\n<h3 id=\"key-details-to-note\">Key Details to Note:</h3>\n<ul>\n<li><p><strong>Single Charge Limit:</strong><br>  Each mandate charge is capped at the <strong>Amount</strong> specified when the mandate was created. This amount represents the maximum that can be deducted in a single charge, not the total deductible amount. You can process charges for variable amounts and intervals, as long as they remain within the mandate’s validity period and the set limit.</p>\n</li>\n<li><p><strong>Fraud Prevention:</strong><br>  To safeguard against fraud, any amount debited via direct debit remains in the organization's account and cannot be withdrawn for 24 hours.</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Using The API","slug":"using-the-api"},{"content":"Customers","slug":"customers"},{"content":"Account Number Discovery","slug":"account-number-discovery"},{"content":"Mandates","slug":"mandates"},{"content":"Direct Debit","slug":"direct-debit"}],"owner":"14568179","collectionId":"bed859a9-147b-4c37-b097-a8223b10f20b","publishedId":"2sAYBUEYRp","public":true,"customColor":{"top-bar":"EAF3F9","right-sidebar":"C2E7FD","highlight":"5D87FF"},"publishDate":"2024-11-27T10:56:11.000Z"},"item":[{"name":"Authentication","item":[{"name":"Get Token","id":"0dfa380a-5dcb-49db-bb0a-9868860d5978","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"X-Auth-Id","value":"","type":"text"},{"key":"X-Auth-Secret","value":"","type":"text"}],"url":"/api/auth/create-session","description":"<p>The <code>create-session</code> endpoint is used to generate a session token for authentication. This API returns the details of an org's session auth configuration. The session token will remain valid for a short period of time.</p>\n<h3 id=\"response\"><strong>Response</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"message\": \"Auth creation successful\",\n    \"data\": {\n        \"token\": \"token-string\"\n    }\n}\n\n</code></pre>\n<p>The generated token can be used to authorize subsequent requests by including it in the <code>X-AUTH-TOKEN</code> header.</p>\n","urlObject":{"path":["api","auth","create-session"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"341d9ac9-568d-4f09-a6e3-eea3f9bdc2a9","name":"200","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Id","value":"","type":"text"},{"key":"X-Auth-Secret","value":"","type":"text"}],"url":"/api/auth/create-session"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Access-Control-Allow-Origin","value":"https://neocollect.ng"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Sun, 24 Nov 2024 22:37:50 GMT"},{"key":"Content-Length","value":"94"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Auth creation successful\",\n    \"data\": {\n        \"token\": \"e8179e76-9b65-4b71-a6ba-ff019a473dce\"\n    }\n}"},{"id":"dacfee7d-95a3-460a-848e-969e806087a8","name":"401","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Id","value":"","type":"text"},{"key":"X-Auth-Secret","value":"","type":"text"}],"url":"/api/auth/create-session"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Access-Control-Allow-Origin","value":"https://neocollect.ng"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Sun, 24 Nov 2024 22:24:43 GMT"},{"key":"Content-Length","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": null,\n    \"message\": \"Authorization header is missing.\"\n}"}],"_postman_id":"0dfa380a-5dcb-49db-bb0a-9868860d5978"}],"id":"10c5d3ee-6893-442b-a614-7f01e4382e11","description":"<p>Request and retrieve authentication token</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"27455c65-7d8d-4eba-b86b-338cac3a4876","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"57823e22-be84-4ea0-adc1-eb1e6790e583","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"10c5d3ee-6893-442b-a614-7f01e4382e11"},{"name":"Customers","item":[{"name":"Create Customer","id":"83ef0eaa-1230-49f5-aaac-1a99fb87dc52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Auth-Token","value":""},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    //\"first_name\": \"thomas\",\n    \"last_name\": \"jerry\",\n    \"address\": {\n        \"street\": \"99, Sam magbagbeolu crecent\",\n        \"town\": \"Akowonjo\",\n        \"state\": \"Lagos\"\n    },\n    \"phone_number\": \"081144756\", // 02\n    \"email\": \"tcat5@wb.com\",\n    \"bvn\": \"11122244156\"\n}","options":{"raw":{"language":"json"}}},"url":"/customer","description":"<p>Create a new customer. This customer shall be added to a company and can only be managed by an authorixed person in the company</p>\n<h3 id=\"request-body\">Request Body</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>first_name</td>\n<td>First name of the customer</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td>Last name of the customer</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address.street</td>\n<td>Street address</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address.town</td>\n<td>Town</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>address.state</td>\n<td>State</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>phone_number</td>\n<td>Phone number in <a href=\"https://www.twilio.com/docs/glossary/what-e164\">E164 format</a></td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Email address</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>bvn</td>\n<td>Bank Verification Number</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["customer"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"a9651e9e-abd3-4f3b-9b1c-8848275d30df","name":"201","originalRequest":{"method":"POST","header":[{"key":"X-Auth-Token","value":""}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"thomas\",\n    \"last_name\": \"jerry\",\n    \"address\": {\n        \"street\": \"99, Sam magbagbeolu crecent\",\n        \"town\": \"Akowonjo\",\n        \"state\": \"Lagos\"\n    },\n    \"phone_number\": \"+2348114475\",\n    \"email\": \"tcat@wb.com\",\n    \"bvn\": \"111222441554\"\n}","options":{"raw":{"language":"json"}}},"url":"/customer"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a8cb2e70-614e-4890-b62e-adc8cf842923","name":"400","originalRequest":{"method":"POST","header":[{"key":"X-Auth-Token","value":""}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"thomas\",\n    \"last_name\": \"jerry\",\n    \"address\": {\n        \"street\": \"99, Sam magbagbeolu crecent\",\n        \"town\": \"Akowonjo\",\n        \"state\": \"Lagos\"\n    },\n    \"phone_number\": \"+2348114475\",\n    \"email\": \"tcat@wb.com\",\n    \"bvn\": \"111222441554\"\n}","options":{"raw":{"language":"json"}}},"url":"/customer"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"field errors\",\n    \"data\": {\n        \"first_name\": \"Customer's first name is required\",\n        \"email\": \"This email address already belongs to an existing user\"\n    }\n}"},{"id":"5f6900b9-7f4f-4dff-9bb6-289a91301bd8","name":"409 - Duplicate record","originalRequest":{"method":"POST","header":[{"key":"X-Auth-Token","value":""},{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"thomas\",\n    \"last_name\": \"jerry\",\n    \"address\": {\n        \"street\": \"99, Sam magbagbeolu crecent\",\n        \"town\": \"Akowonjo\",\n        \"state\": \"Lagos\"\n    },\n    \"phone_number\": \"+23481144756\",\n    \"email\": \"tcat@wb.com\",\n    \"bvn\": \"11122244156\"\n}","options":{"raw":{"language":"json"}}},"url":"/customer"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 25 Jul 2024 03:55:35 GMT"},{"key":"Content-Length","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": null,\n    \"message\": \"Customer found with the same Email\"\n}"}],"_postman_id":"83ef0eaa-1230-49f5-aaac-1a99fb87dc52"},{"name":"Get Customer","id":"7a666e42-df51-4a9f-9d5a-180f9329687b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Auth-Token","value":""}],"url":"/customer/:id","description":"<p>This endpoint retrieves customer information based on the ID provided.</p>\n","urlObject":{"path":["customer",":id"],"host":[""],"query":[],"variable":[{"id":"b5e329b9-d5f6-4117-9fab-c9913f5ef4be","description":{"content":"<p>required</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"64019107-1ce3-4621-9a8a-584069b6aac4","name":"200","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":""}],"url":{"raw":"/customer/:id","host":[""],"path":["customer",":id"],"variable":[{"key":"id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"dksdujsw-323-frs\",\n    \"first_name\": \"Jennifer\",\n    \"last_name\": \"Garner\",\n    \"phone\": \"+2348103236508\",\n    \"email\": \"omfals@api.co\",\n    \"bank_accounts\": [\n        {\n            \"bank\": \"Wema Bank\",\n            \"bank_code\": \"013\",\n            \"nuban\": \"9023224475\",\n            \"ref\": \"unique_ne_ref\"\n        }\n    ]\n}"}],"_postman_id":"7a666e42-df51-4a9f-9d5a-180f9329687b"},{"name":"List Customers","id":"41ce1008-0217-46e6-b78c-e6741c6e0d55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Auth-Token","value":""},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"/customer","description":"<p>This endpoint retrieves a paginated list of all the customers in a company</p>\n","urlObject":{"path":["customer"],"host":[""],"query":[{"disabled":true,"description":{"content":"<p>Maximum results per page (if empty all results will be returned)</p>\n","type":"text/plain"},"key":"rpp","value":"number"},{"disabled":true,"description":{"content":"<p>Page to return (ignored if rpp is empty or 0)</p>\n","type":"text/plain"},"key":"p","value":"number"}],"variable":[]}},"response":[{"id":"59b9fbdf-c768-48c6-b245-e23632766659","name":"200","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":""}],"url":{"raw":"/customer?rpp=50&p=1","host":[""],"path":["customer"],"query":[{"key":"rpp","value":"50","description":"maximum results per page"},{"key":"p","value":"1","description":"page to return"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"pagination\": {\n        \"results\": 384,\n        \"results_per_page\": 94,\n        \"total_pages\": 5,\n        \"returned_page\": 3\n    },\n    \"data\": [\n        {\n            \"id\": \"dksdujsw-323-frs\",\n            \"first_name\": \"Jennifer\",\n            \"last_name\": \"Garner\",\n            \"phone\": \"+2348103236508\",\n            \"email\": \"omfals@api.co\"\n        }\n    ]\n}"}],"_postman_id":"41ce1008-0217-46e6-b78c-e6741c6e0d55"},{"name":"Get Bank Account Query Consent","id":"5a573fe0-a9e9-41a8-90ac-379b677eb3f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Auth-Token","value":""},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"/customer/:id/icad","description":"<p>This endpoint generates a link to a consent flow which your customer must complete before you can get access to all their bank accounts.</p>\n<p><strong>Neocollect will also send the link with instructions to your customer's registered phone number.</strong></p>\n","urlObject":{"path":["customer",":id","icad"],"host":[""],"query":[],"variable":[{"id":"a3e1a65d-f7c8-4e3b-be69-e47ac04a874e","description":{"content":"<p>required</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"6fe52a73-40cc-4300-a754-68681793b42c","name":"200","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":""}],"url":{"raw":"/customer/:id/icad","host":[""],"path":["customer",":id","icad"],"variable":[{"key":"id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"customer consent requested\",\n    \"data\": {\n        \"consent_url\": \"https://www.dsdscdsc.sdcsdc.dc\"\n    }\n}"}],"_postman_id":"5a573fe0-a9e9-41a8-90ac-379b677eb3f3"}],"id":"c201af78-47b1-480d-b2ff-3d3c7942b63f","description":"<p>Create and manage customer profile.</p>\n","event":[{"listen":"prerequest","script":{"id":"6dc61f96-d161-4e77-bc9a-8bcdd5fc941b","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"cb2bf2a7-c8c1-4c4a-ad23-4f32bea44356","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"c201af78-47b1-480d-b2ff-3d3c7942b63f"},{"name":"Mandates","item":[{"name":"Schedules","item":[{"name":"List Schedules","id":"1fca0e33-84f3-4044-8731-fd04e791f50a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.neocollect.ng/test/mandate-schedules/:mandateId","urlObject":{"path":["mandate-schedules",":mandateId"],"host":["https://api.neocollect.ng/test"],"query":[],"variable":[{"type":"any","value":"mandate-id","key":"mandateId"}]}},"response":[{"id":"6e1fdb69-ff01-4a73-a88d-0b7431f6b826","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.neocollect.ng/test/mandate-schedules/:mandateId","host":["https://api.neocollect.ng/test"],"path":["mandate-schedules",":mandateId"],"variable":[{"key":"mandateId","value":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 08:34:29 GMT"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"id\": \"ORGPDChUKNqMkshSQbfJEZUYG\",\n            \"mandate_id\": \"4fdb0d7f-b6c1-40f3-9bf8-bd21b9d03e8e\",\n            \"date\": \"2254-02-23T23:52:22.337433185+01:00\",\n            \"amount\": 2700,\n            \"retry_on_fail\": true,\n            \"narration\": \"Sapiente dolore et omnis doloremque ullam.\",\n            \"executed\": false\n        },\n        {\n            \"id\": \"ZZlWUxxygVwXDfitcUrXujVaU\",\n            \"mandate_id\": \"1de0ceb7-2c3f-49e2-9462-78c29a135fa1\",\n            \"date\": \"2060-08-26T16:44:17.696443059+01:00\",\n            \"amount\": 4300,\n            \"retry_on_fail\": false,\n            \"narration\": \"Amet voluptatem beatae sed aut sed.\",\n            \"executed\": true\n        },\n        {\n            \"id\": \"UIxesOtxkFnCuPcGSAMbHeTkL\",\n            \"mandate_id\": \"7e1e8cbe-5941-4ec3-9ecc-281086c2aff4\",\n            \"date\": \"2124-06-23T11:39:34.160997213+01:00\",\n            \"amount\": 7200,\n            \"retry_on_fail\": true,\n            \"narration\": \"Hic voluptatem aut voluptatem labore quis.\",\n            \"executed\": false\n        },\n        {\n            \"id\": \"WukVOmGBWdeEFQtUdgByYTqGQ\",\n            \"mandate_id\": \"81d0a97d-6fb8-40df-bbab-fcdc3fffeb5c\",\n            \"date\": \"2059-10-10T09:40:43.893598215+01:00\",\n            \"amount\": 7100,\n            \"retry_on_fail\": true,\n            \"narration\": \"Ratione quis culpa aut autem dolor.\",\n            \"executed\": true\n        },\n        {\n            \"id\": \"fMpvKvggclxXIVpeTflwXaYLg\",\n            \"mandate_id\": \"aa138017-bfac-4473-8fd2-c44ef87f60e9\",\n            \"date\": \"2089-06-07T17:14:48.943570189+01:00\",\n            \"amount\": 8700,\n            \"retry_on_fail\": true,\n            \"narration\": \"Sapiente autem sint voluptatem est molestiae.\",\n            \"executed\": false\n        },\n        {\n            \"id\": \"yJUNwCyjQTYFiCKMUqMPddWxW\",\n            \"mandate_id\": \"f09d9fbc-d472-448d-9199-d251511bc8b2\",\n            \"date\": \"2282-03-24T18:32:30.474273329+01:00\",\n            \"amount\": 6300,\n            \"retry_on_fail\": true,\n            \"narration\": \"Itaque distinctio deserunt est voluptatem perspiciatis.\",\n            \"executed\": false\n        },\n        {\n            \"id\": \"wJnscFoWYIhBoVSiVgRhRlkmh\",\n            \"mandate_id\": \"fde723ef-41b6-43b6-a735-5149473ae242\",\n            \"date\": \"2201-09-13T23:25:45.286925339+01:00\",\n            \"amount\": 3300,\n            \"retry_on_fail\": true,\n            \"narration\": \"Deleniti et enim est autem quas.\",\n            \"executed\": true\n        },\n        {\n            \"id\": \"nwGRwdhDRdTvpQVwuNiZeJtHw\",\n            \"mandate_id\": \"b4dab563-e1b4-4f92-a2d2-b88d91830bab\",\n            \"date\": \"2236-12-26T20:54:11.203072095+01:00\",\n            \"amount\": 0,\n            \"retry_on_fail\": false,\n            \"narration\": \"Soluta voluptas quia animi tempore tenetur.\",\n            \"executed\": true\n        },\n        {\n            \"id\": \"BsrKvelddXReMpYlEFHDjPvyt\",\n            \"mandate_id\": \"2e7c50f3-42b4-4bfc-a1d5-2b7acb1b3231\",\n            \"date\": \"2083-02-22T12:04:13.378098282+01:00\",\n            \"amount\": 4800,\n            \"retry_on_fail\": true,\n            \"narration\": \"Laboriosam magni porro consequatur voluptatem inventore.\",\n            \"executed\": true\n        },\n        {\n            \"id\": \"SLafmaPkLhlktTyNqGKTkipSL\",\n            \"mandate_id\": \"e2a3591a-7505-43fc-8e40-d9b89e54c156\",\n            \"date\": \"2059-04-12T23:00:22.179522366+01:00\",\n            \"amount\": 9800,\n            \"retry_on_fail\": true,\n            \"narration\": \"Dolor ipsam odio ut molestiae consequuntur.\",\n            \"executed\": false\n        },\n        {\n            \"id\": \"VbwenGvRRwBdBWqOIkofFhHwO\",\n            \"mandate_id\": \"cf9d293f-4cfd-448c-b1fc-217877d2a059\",\n            \"date\": \"2272-06-06T21:28:11.923166313+01:00\",\n            \"amount\": 9900,\n            \"retry_on_fail\": true,\n            \"narration\": \"Harum ea voluptatem totam vel et.\",\n            \"executed\": true\n        },\n        {\n            \"id\": \"cQYhOhNmfsuQRCxvXfBTSUbQg\",\n            \"mandate_id\": \"38bae3fb-f0de-4386-830e-55dd29a6e8ee\",\n            \"date\": \"2077-09-07T16:21:49.332586002+01:00\",\n            \"amount\": 5200,\n            \"retry_on_fail\": false,\n            \"narration\": \"Tempore et alias asperiores architecto inventore.\",\n            \"executed\": true\n        },\n        {\n            \"id\": \"tcVPfxvBdxgtrlbwDJWZxrjhU\",\n            \"mandate_id\": \"e667d120-f8b1-4064-9c0e-1d0361632527\",\n            \"date\": \"2220-12-23T09:39:36.478950387+01:00\",\n            \"amount\": 4800,\n            \"retry_on_fail\": true,\n            \"narration\": \"Commodi ullam eum et consequuntur aut.\",\n            \"executed\": false\n        },\n        {\n            \"id\": \"IruMTquJAylqPBQULGIammllJ\",\n            \"mandate_id\": \"e162d1b0-4541-4c0f-a8e1-59aa1587802b\",\n            \"date\": \"2260-02-27T13:01:41.878937093+01:00\",\n            \"amount\": 5500,\n            \"retry_on_fail\": false,\n            \"narration\": \"Adipisci ut hic voluptatum commodi dolor.\",\n            \"executed\": false\n        },\n        {\n            \"id\": \"jwsVvgTbEOPsAtuEhuDEitssy\",\n            \"mandate_id\": \"8ff5de96-e0fb-427e-abc9-257bc609ef37\",\n            \"date\": \"2204-04-26T14:49:26.485552968+01:00\",\n            \"amount\": 5700,\n            \"retry_on_fail\": false,\n            \"narration\": \"Iusto ullam occaecati veniam saepe nihil.\",\n            \"executed\": true\n        }\n    ]\n}"},{"id":"98c340e0-c9b9-4548-8890-bd7f974f1f16","name":"400","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.neocollect.ng/test/mandate-schedules/:mandateId","host":["https://api.neocollect.ng/test"],"path":["mandate-schedules",":mandateId"],"variable":[{"key":"mandateId","value":"mandate-id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 10:10:12 GMT"},{"key":"Content-Length","value":"49"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": null,\n    \"message\": \"No mandate id specified\"\n}"}],"_postman_id":"1fca0e33-84f3-4044-8731-fd04e791f50a"},{"name":"Create Schedules","id":"50be8be5-897b-428d-b173-9fe33b4e3079","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n            \"id\": \"ORGPDChUKNqMkshSQbfJEZUYG\",\n            \"mandate_id\": \"4fdb0d7f-b6c1-40f3-9bf8-bd21b9d03e8e\",\n            \"date\": \"2254-02-23T23:52:22.337433185+01:00\",\n            \"amount\": 2700,\n            \"retry_on_fail\": true,\n            \"narration\": \"Sapiente dolore et omnis doloremque ullam.\",\n            \"executed\": false\n        }","options":{"raw":{"language":"json"}}},"url":"https://api.neocollect.ng/test/mandate-schedules/:mandateId","urlObject":{"path":["mandate-schedules",":mandateId"],"host":["https://api.neocollect.ng/test"],"query":[],"variable":[{"type":"any","value":"","key":"mandateId"}]}},"response":[{"id":"4242e990-78d8-4793-a330-3f64e9160873","name":"400","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.neocollect.ng/test/mandate-schedules/:mandateId","host":["https://api.neocollect.ng/test"],"path":["mandate-schedules",":mandateId"],"variable":[{"key":"mandateId","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 10:11:49 GMT"},{"key":"Content-Length","value":"71"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"schedules\": \"schedules is required\"\n    },\n    \"message\": \"field errors\"\n}"},{"id":"816232f1-d911-40c4-93eb-a2cddef9fe29","name":"400","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"schedules\": [\n        {\n            \"id\": \"ORGPDChUKNqMkshSQbfJEZUYG\",\n            \"mandate_id\": \"\",\n            \"date\": \"2254-02-23T23:52:22.337433185+01:00\",\n            \"amount\": 2700,\n            \"retry_on_fail\": true,\n            \"narration\": \"Sapiente dolore et omnis doloremque ullam.\",\n            \"executed\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.neocollect.ng/test/mandate-schedules/:mandateId","host":["https://api.neocollect.ng/test"],"path":["mandate-schedules",":mandateId"],"variable":[{"key":"mandateId","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 10:12:26 GMT"},{"key":"Content-Length","value":"73"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"mandate_id\": \"mandate_id is required\"\n    },\n    \"message\": \"field errors\"\n}"},{"id":"cec27777-ebc7-4656-bb5b-fc0d6174685e","name":"201","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"schedules\": [\n        {\n            \"id\": \"ORGPDChUKNqMkshSQbfJEZUYG\",\n            \"mandate_id\": \"4fdb0d7f-b6c1-40f3-9bf8-bd21b9d03e8e\",\n            \"date\": \"2254-02-23T23:52:22.337433185+01:00\",\n            \"amount\": 2700,\n            \"retry_on_fail\": true,\n            \"narration\": \"Sapiente dolore et omnis doloremque ullam.\",\n            \"executed\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.neocollect.ng/test/mandate-schedules/:mandateId","host":["https://api.neocollect.ng/test"],"path":["mandate-schedules",":mandateId"],"variable":[{"key":"mandateId","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 10:13:02 GMT"},{"key":"Content-Length","value":"21"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\"\n}"}],"_postman_id":"50be8be5-897b-428d-b173-9fe33b4e3079"},{"name":"Update Schedules","id":"fedff2cd-e2ce-44df-a1d1-65feae071390","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n            \"id\": \"ORGPDChUKNqMkshSQbfJEZUYG\",\n            \"mandate_id\": \"4fdb0d7f-b6c1-40f3-9bf8-bd21b9d03e8e\",\n            \"date\": \"2254-02-23T23:52:22.337433185+01:00\",\n            \"amount\": 2700,\n            \"retry_on_fail\": true,\n            \"narration\": \"Sapiente dolore et omnis doloremque ullam.\",\n            \"executed\": false\n        }","options":{"raw":{"language":"json"}}},"url":"https://api.neocollect.ng/test/mandate-schedules","urlObject":{"path":["mandate-schedules"],"host":["https://api.neocollect.ng/test"],"query":[],"variable":[]}},"response":[{"id":"4246916f-0bcd-4557-a2f1-1a79a0811c85","name":"201","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n            \"id\": \"ORGPDChUKNqMkshSQbfJEZUYG\",\n            \"mandate_id\": \"4fdb0d7f-b6c1-40f3-9bf8-bd21b9d03e8e\",\n            \"date\": \"2254-02-23T23:52:22.337433185+01:00\",\n            \"amount\": 2700,\n            \"retry_on_fail\": true,\n            \"narration\": \"Sapiente dolore et omnis doloremque ullam.\",\n            \"executed\": false\n        }","options":{"raw":{"language":"json"}}},"url":"https://api.neocollect.ng/test/mandate-schedules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 10:19:56 GMT"},{"key":"Content-Length","value":"21"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\"\n}"},{"id":"9aa8a6c1-b8a1-4856-a2af-80cb2d8019b1","name":"400","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n            \"id\": \"ORGPDChUKNqMkshSQbfJEZUYG\",\n            \"date\": \"2254-02-23T23:52:22.337433185+01:00\",\n            \"amount\": 2700,\n            \"retry_on_fail\": true,\n            \"narration\": \"Sapiente dolore et omnis doloremque ullam.\",\n            \"executed\": false\n        }","options":{"raw":{"language":"json"}}},"url":"https://api.neocollect.ng/test/mandate-schedules"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 10:20:31 GMT"},{"key":"Content-Length","value":"73"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"mandate_id\": \"mandate_id is required\"\n    },\n    \"message\": \"field errors\"\n}"}],"_postman_id":"fedff2cd-e2ce-44df-a1d1-65feae071390"},{"name":"Delete Schedule","id":"b9f2e6af-3900-4e3e-a0f1-3e6257a013e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n            \"id\": \"ORGPDChUKNqMkshSQbfJEZUYG\",\n            \"mandate_id\": \"4fdb0d7f-b6c1-40f3-9bf8-bd21b9d03e8e\",\n            \"date\": \"2254-02-23T23:52:22.337433185+01:00\",\n            \"amount\": 2700,\n            \"retry_on_fail\": true,\n            \"narration\": \"Sapiente dolore et omnis doloremque ullam.\",\n            \"executed\": false\n        }","options":{"raw":{"language":"json"}}},"url":"https://api.neocollect.ng/test/mandate-schedules","urlObject":{"path":["mandate-schedules"],"host":["https://api.neocollect.ng/test"],"query":[],"variable":[]}},"response":[{"id":"891a8160-9568-43b4-885d-2167f2c10099","name":"403 - Forbidden","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.neocollect.ng/test/mandate-schedules/:id","host":["https://api.neocollect.ng/test"],"path":["mandate-schedules",":id"],"variable":[{"key":"id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 10:23:13 GMT"},{"key":"Content-Length","value":"120"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": null,\n    \"message\": \"You do not have permission to update mandate schedules. Please speak to your admin about this.\"\n}"},{"id":"d6d196ff-9b22-4262-b7a8-0e6bff05c23b","name":"404 - Not found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.neocollect.ng/test/mandate-schedules/:id","host":["https://api.neocollect.ng/test"],"path":["mandate-schedules",":id"],"variable":[{"key":"id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 10:25:55 GMT"},{"key":"Content-Length","value":"44"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": null,\n    \"message\": \"Schedule not found\"\n}"},{"id":"361f8144-50c1-46a9-a3e4-dc8824752f66","name":"200 - Success","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.neocollect.ng/test/mandate-schedules/:id","host":["https://api.neocollect.ng/test"],"path":["mandate-schedules",":id"],"variable":[{"key":"id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 10:27:23 GMT"},{"key":"Content-Length","value":"21"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\"\n}"}],"_postman_id":"b9f2e6af-3900-4e3e-a0f1-3e6257a013e8"}],"id":"b1ed20ae-a5c0-4ff3-b078-bf9d0819273a","_postman_id":"b1ed20ae-a5c0-4ff3-b078-bf9d0819273a","description":""},{"name":"Name Enquiry","id":"451e9876-25f1-4eb0-9639-26b6546088e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-auth-token","value":"","type":"text"}],"url":"/name-enquiry?bank-code=number&nuban=number","description":"<p>Comfirm the name of the customer by running a name query request. This is required to ensure the correctness and accuracy of the information provided.</p>\n","urlObject":{"path":["name-enquiry"],"host":[""],"query":[{"description":{"content":"<p>required</p>\n","type":"text/plain"},"key":"bank-code","value":"number"},{"description":{"content":"<p>required</p>\n","type":"text/plain"},"key":"nuban","value":"number"}],"variable":[]}},"response":[{"id":"14689adb-ec8c-498b-9151-ecf9bff51132","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"/name-enquiry?bank-code=013&nuban=0192283322","host":[""],"path":["name-enquiry"],"query":[{"key":"bank-code","value":"013"},{"key":"nuban","value":"0192283322"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": {\n        \"bank_code\": \"013\",\n        \"nuban\": \"0192283322\",\n        \"account_name\": \"THOMAS OLUWOLE JEFFERSSON\",\n        \"ref\": \"ne-ref-232-\"\n    }\n}"},{"id":"7b47b41f-1404-4d9b-bc2b-f1e7c147d4d5","name":"400","originalRequest":{"method":"GET","header":[],"url":{"raw":"/name-enquiry?bank-code=013&nuban=0192283322","host":[""],"path":["name-enquiry"],"query":[{"key":"bank-code","value":"013"},{"key":"nuban","value":"0192283322"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Invalid account number\"\n}"}],"_postman_id":"451e9876-25f1-4eb0-9639-26b6546088e9"},{"name":"Create Mandates","id":"6998968b-3942-4eab-9cd9-048d009678a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Auth-Token","value":""}],"body":{"mode":"raw","raw":"{\n    \"mandates\": [\n        {\n            \"ref\": \"sdsadkhdsd_sdsdsd\",\n            \"customer_id\": \"3806e504-2959-4408-83fd-4fccaae1656a\",\n            \"amount\": 5900000,\n            \"start_date\": \"2025-07-12T15:04:05Z07:00\",\n            \"end_date\": \"2026-08-12T15:04:05Z07:00\",\n            // \"name_enquiry_ref\": \"540724143536367482826660\",\n            \"purpose\": \"monthly subscription\",\n            \"auth_type\": \"transfer-auth\" // transfer-auth, sig-auth\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.neocollect.ng/test/mandate?auth_type=sig-auth","description":"<p>Add mandate to customer account.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>mandates</td>\n<td>List of mandate objects</td>\n<td>Array</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>mandates.ref</td>\n<td><strong>UNIQUE</strong> reference ID for the mandate</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>mandates.customer_id</td>\n<td>Customer ID associated with the mandate</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>mandates.amount</td>\n<td>Amount (<strong>In Kobo</strong>) to be charged on the mandate</td>\n<td>Number</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>mandates.start_date</td>\n<td>Start date of the mandate <strong>(RFC 3339 format - \"2006-01-02T15:04:05Z07:00)</strong></td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>mandates.end_date</td>\n<td>End/Expiry date of the mandate <strong>(RFC 3339 format - \"2006-01-02T15:04:05Z07:00)</strong></td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>mandates.name_enquiry_ref</td>\n<td>Name enquiry reference</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>mandates.auth_type</td>\n<td>Defines whether mandate is signed electronically or manually  <br />Accepts one of \"transfer-auth\" and \"sig-auth\"  <br />  <br />transfer-auth: defines an electronic signature which can be instant  <br />  <br />sig-auth: requires a payer to sign a document and it used to sign global mandates for multiple accounts</td>\n<td>String</td>\n<td>No, defaults to transfer-auth</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["mandate"],"host":["https://api.neocollect.ng/test"],"query":[{"description":{"content":"<p>transfer-auth, sig-auth</p>\n","type":"text/plain"},"key":"auth_type","value":"sig-auth"}],"variable":[]}},"response":[{"id":"c28d1f41-4649-4ba8-8ee1-3ba48b846669","name":"207","originalRequest":{"method":"POST","header":[{"key":"X-Auth-Token","value":""}],"body":{"mode":"raw","raw":"{\n    \"mandates\": [\n        {\n            \"customer_id\": \"dsdsds\",\n            \"amount\": 5900000,\n            \"start_date\": \"01/01/2024\",\n            \"end_date\": \"01/01/2025\",\n            \"bank_code\": \"0913\",\n            \"name_enquiry_ref\": \"unadsgd-s24f-ds\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"/mandate"},"status":"Multi-Status (WebDAV) (RFC 4918)","code":207,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"partial success\",\n    \"data\": {\n        \"mandates\": [\n            {\n                \"customer_id\": \"dsdsds\",\n                \"amount\": 5900000,\n                \"start_date\": \"01/01/2024\",\n                \"end_date\": \"01/01/2025\",\n                \"bank_code\": \"0913\",\n                \"name_enquiry_ref\": \"unadsgd-s24f-ds\",\n                \"mandate_id\": \"dsjksfjdafsdfdsca\",\n                \"status\": \"success\",\n                \"message\": \"Please transfer N50.00 to Titan Trust Bank: 9182127423 from your GTB 01212121 account\",\n                \"auth_details\": {\n                    \"amount\": 5000,\n                    \"nuban\": \"039393842\",\n                    \"bank_name\": \"Titan Trust Bank\"\n                }\n            },\n            {\n                \"customer_id\": \"dsdsds\",\n                \"amount\": 5900000,\n                \"start_date\": \"01/01/2024\",\n                \"end_date\": \"01/01/2025\",\n                \"bank_code\": \"0913\",\n                \"name_enquiry_ref\": \"unadsgd-s24f-ds\",\n                \"mandate_id\": \"dsjksfjdafsdfdsca\",\n                \"status\": \"failed\",\n                \"message\": \"This bank doesn't allow mandates\",\n                \"auth_details\": {\n                    \"amount\": 5000,\n                    \"nuban\": \"039393842\",\n                    \"bank_name\": \"Titan Trust Bank\"\n                }\n            }\n        ]\n    }\n}"},{"id":"c64252fc-1fde-4635-b528-763bd6856697","name":"Create Mandates - Failed with message","originalRequest":{"method":"POST","header":[{"key":"X-Auth-Token","value":""}],"body":{"mode":"raw","raw":"{\n    \"mandates\": [\n        {\n            \"ref\": \"540724143536367482826660\",\n            \"customer_id\": \"dsdsds\",\n            \"amount\": 5900000,\n            \"start_date\": \"01/01/2024\",\n            \"end_date\": \"01/01/2025\",\n            \"name_enquiry_ref\": \"unadsgd-s24f-ds\",\n            \"purpose\": \"monthly subscription\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"/mandate"},"status":"Multi-Status","code":207,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 24 Jul 2024 13:58:17 GMT"},{"key":"Content-Length","value":"231"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"partial success\",\n    \"data\": {\n        \"mandates\": [\n            {\n                \"mandate_id\": \"\",\n                \"customer_id\": \"\",\n                \"bank_code\": \"\",\n                \"amount\": 0,\n                \"start_date\": \"0001-01-01T00:00:00Z\",\n                \"end_date\": \"0001-01-01T00:00:00Z\",\n                \"status\": \"failed\",\n                \"message\": \"customer not found\"\n            }\n        ]\n    }\n}"},{"id":"e3a86418-ee12-4823-b647-3bbe9795d798","name":"Create Mandates - 200 success","originalRequest":{"method":"POST","header":[{"key":"X-Auth-Token","value":""}],"body":{"mode":"raw","raw":"{\n    \"mandates\": [\n        {\n            \"ref\": \"sdsadkhdsd\",\n            \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n            \"amount\": 5900000,\n            \"start_date\": \"20240101\",\n            \"end_date\": \"20250101\",\n            \"name_enquiry_ref\": \"540724143536367482826660\",\n            \"purpose\": \"monthly subscription\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"/mandate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 24 Jul 2024 14:23:07 GMT"},{"key":"Content-Length","value":"325"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": {\n        \"mandates\": [\n            {\n                \"mandate_id\": \"2f84f34d-f49c-44f5-9e98-70bd909dfa67\",\n                \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n                \"bank_code\": \"033\",\n                \"amount\": 5900000,\n                \"start_date\": \"2024-01-01T00:00:00Z\",\n                \"end_date\": \"2025-01-01T00:00:00Z\",\n                \"status\": \"authorization-needed\",\n                \"message\": \"Mock response description\"\n            }\n        ]\n    }\n}"},{"id":"46b1c1ef-83a6-40d7-bd68-0b75fd092cf6","name":"Create Mandates - 400","originalRequest":{"method":"POST","header":[{"key":"X-Auth-Token","value":""}],"body":{"mode":"raw","raw":"{\n    \"mandates\": [\n        {\n            \"ref\": \"sdsadkhdsd\",\n            \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n            \"amount\": 5900000,\n            \"start_date\": \"2025-01-02T15:04:05Z\",\n            \"end_date\": \"2026-01-02T15:04:05Z\",\n            \"name_enquiry_ref\": \"540724143536367482826660\",\n            \"purpose\": \"monthly subscription\",\n            \"auth_type\": \"transfer-auth\" // transfer-auth\n        },\n        {\n            \"ref\": \"sdsadkhdsdlklk\",\n            \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n            \"amount\": 5900000,\n            \"start_date\": \"2025-01-02T15:04:05Z\",\n            \"end_date\": \"2026-01-02T15:04:05Z\",\n            \"name_enquiry_ref\": \"540724143536367482826660\",\n            \"purpose\": \"monthly subscription\",\n            \"auth_type\": \"transfer-auth\" // transfer-auth\n        },\n        {\n            \"ref\": \"sdsadkhdsdkl\",\n            \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n            \"amount\": 5900000,\n            \"start_date\": \"2025-01-02T15:04:05Z\",\n            \"end_date\": \"2026-01-02T15:04:05Z\",\n            \"name_enquiry_ref\": \"540724143536367482826660\",\n            \"purpose\": \"monthly subscription\",\n            \"auth_type\": \"transfer-auth\" // transfer-auth\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.neocollect.ng/test/mandate?auth_type=sig-auth","host":["https://api.neocollect.ng/test"],"path":["mandate"],"query":[{"key":"auth_type","value":"sig-auth","description":"transfer-auth, sig-auth"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 26 Nov 2024 13:02:27 GMT"},{"key":"Content-Length","value":"96"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": null,\n    \"message\": \"Sorry, you can only assign 1 customer to global mandates at this time.\"\n}"},{"id":"7314fa5b-79ef-46e6-a1bc-3738f49948d4","name":"Create Mandates - Partial Success","originalRequest":{"method":"POST","header":[{"key":"X-Auth-Token","value":""}],"body":{"mode":"raw","raw":"{\n    \"mandates\": [\n        {\n            \"ref\": \"sdsadkhdsd\",\n            \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n            \"amount\": 5900000,\n            \"start_date\": \"2025-01-02T15:04:05Z\",\n            \"end_date\": \"2026-01-02T15:04:05Z\",\n            \"name_enquiry_ref\": \"540724143536367482826660\",\n            \"purpose\": \"monthly subscription\",\n            \"auth_type\": \"transfer-auth\" // transfer-auth\n        },\n        {\n            \"ref\": \"sdsadkhdsdlklk\",\n            \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n            \"amount\": 5900000,\n            \"start_date\": \"2025-01-02T15:04:05Z\",\n            \"end_date\": \"2026-01-02T15:04:05Z\",\n            \"name_enquiry_ref\": \"540724143536367482826660\",\n            \"purpose\": \"monthly subscription\",\n            \"auth_type\": \"transfer-auth\" // transfer-auth\n        },\n        {\n            \"ref\": \"sdsadkhdsdkl\",\n            \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n            \"amount\": 5900000,\n            \"start_date\": \"2025-01-02T15:04:05Z\",\n            \"end_date\": \"2026-01-02T15:04:05Z\",\n            \"name_enquiry_ref\": \"540724143536367482826660\",\n            \"purpose\": \"monthly subscription\",\n            \"auth_type\": \"transfer-auth\" // transfer-auth\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.neocollect.ng/test/mandate?auth_type=transfer-auth","host":["https://api.neocollect.ng/test"],"path":["mandate"],"query":[{"key":"auth_type","value":"transfer-auth","description":"transfer-auth, sig-auth"}]}},"status":"Multi-Status","code":207,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 26 Nov 2024 14:28:14 GMT"},{"key":"Content-Length","value":"1477"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"partial success\",\n    \"data\": {\n        \"mandates\": [\n            {\n                \"mandate_id\": \"e42274dd-a222-4bb1-b932-2bf7b13956bb\",\n                \"batch_id\": null,\n                \"signing_doc_url\": null,\n                \"product_id\": \"521\",\n                \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n                \"customer_name\": \"Dr. Myah Runolfsson\",\n                \"bank_code\": \"053\",\n                \"bank_name\": \"UBA\",\n                \"amount\": 59000,\n                \"start_date\": \"2025-01-02T15:04:05Z\",\n                \"end_date\": \"2026-01-02T15:04:05Z\",\n                \"status\": \"failed\",\n                \"message\": \"bank details not found\",\n                \"created_at\": \"2024-11-26T15:28:14.153496+01:00\",\n                \"updated_at\": \"2024-11-26T15:28:14.153496+01:00\"\n            },\n            {\n                \"mandate_id\": \"d3cc9252-2f1f-4740-9b4f-1cdd27689442\",\n                \"batch_id\": null,\n                \"signing_doc_url\": null,\n                \"product_id\": \"521\",\n                \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n                \"customer_name\": \"Dr. Myah Runolfsson\",\n                \"bank_code\": \"053\",\n                \"bank_name\": \"UBA\",\n                \"amount\": 59000,\n                \"start_date\": \"2025-01-02T15:04:05Z\",\n                \"end_date\": \"2026-01-02T15:04:05Z\",\n                \"status\": \"failed\",\n                \"message\": \"failed to get customer\",\n                \"created_at\": \"2024-11-26T15:28:14.153743+01:00\",\n                \"updated_at\": \"2024-11-26T15:28:14.153743+01:00\"\n            },\n            {\n                \"mandate_id\": \"73d169f0-1e4d-45e0-8658-451f179a9656\",\n                \"batch_id\": null,\n                \"signing_doc_url\": null,\n                \"product_id\": \"521\",\n                \"customer_id\": \"0711b6e5-9764-4631-9299-3fac839e60c1\",\n                \"customer_name\": \"Dr. Myah Runolfsson\",\n                \"bank_code\": \"053\",\n                \"bank_name\": \"UBA\",\n                \"amount\": 59000,\n                \"start_date\": \"2025-01-02T15:04:05Z\",\n                \"end_date\": \"2026-01-02T15:04:05Z\",\n                \"status\": \"failed\",\n                \"message\": \"Unknown financial institution\",\n                \"created_at\": \"2024-11-26T15:28:14.153759+01:00\",\n                \"updated_at\": \"2024-11-26T15:28:14.153759+01:00\"\n            }\n        ]\n    }\n}"}],"_postman_id":"6998968b-3942-4eab-9cd9-048d009678a7"},{"name":"Get/Refresh Mandate","id":"5b1df8de-dcb5-4910-9f3d-07a40a375c24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Auth-Token","value":""},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"/mandate/:id?refresh=boolean","description":"<p>This endpoint attempts to retrieve the latest information on a direct debit mandate.</p>\n<blockquote>\n<p>When the query parameter <code>refresh</code> is set to <code>false</code>, the endpoint only retrieves the mandate information from the last update. Setting the value of <code>refresh</code> to <code>true</code> forces the endpoint to update the records with the latest information/update on the endpoint.</p>\n</blockquote>\n","urlObject":{"path":["mandate",":id"],"host":[""],"query":[{"key":"refresh","value":"boolean"}],"variable":[{"id":"b36d5f2f-3ad0-4af3-955e-5a5369652d65","description":{"content":"<p>required</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"f848a89c-7162-4fd9-b981-c54563fd2d21","name":"200","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":""}],"url":{"raw":"/mandate/:id?refresh=false","host":[""],"path":["mandate",":id"],"query":[{"key":"refresh","value":"false"}],"variable":[{"key":"id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": {\n        \"id\": \"sadhfdhsd\",\n        \"customer_id\": \"fsdvsdv\",\n        \"amount\": 759888,\n        \"start_date\": \"01/01/2024\",\n        \"end_date\": \"02/02/2024\",\n        \"bank_code\": \"013\",\n        \"bank_name\": \"Zenti Bank\",\n        \"customer_name\": \"Segun Agbafe\",\n        \"nuban\": \"6334343434\",\n        \"status\": \"kfjshd\",\n        \"scheduled\": true,\n        \"schedule\": [\n            {\n                \"date\": \"01/01/2024\",\n                \"amount\": 504444,\n                \"retry_on_fail\": false,\n                \"narrattion\": \"January debit\"\n            },\n            {\n                \"date\": \"02/01/2024\",\n                \"amount\": 504444,\n                \"retry_on_fail\": false,\n                \"narrattion\": \"feb debit\"\n            }\n        ]\n    }\n}"}],"_postman_id":"5b1df8de-dcb5-4910-9f3d-07a40a375c24"},{"name":"Check Mandate Balance","id":"5d2c5c6d-54de-49d4-9fc1-4d6acde2e023","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Auth-Token","value":""},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"/mandate/:id/balance","description":"<p>This endpoint retrieves the customer's account balance on a selected account.</p>\n<blockquote>\n<p>Note that a fee of 10 naira only is charged for this request.</p>\n</blockquote>\n","urlObject":{"path":["mandate",":id","balance"],"host":[""],"query":[],"variable":[{"id":"6cc606f1-c0ec-405e-9447-634b5a9ef2c9","description":{"content":"<p>required</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"9111d7aa-a347-4b12-8d36-7ff80719ba1e","name":"200","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":""}],"url":{"raw":"/mandate/:id/balance","host":[""],"path":["mandate",":id","balance"],"variable":[{"key":"id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": {\n      \"balance\": 94885343,\n      \"date\": \"01/01/2023\"\n    }\n}"}],"_postman_id":"5d2c5c6d-54de-49d4-9fc1-4d6acde2e023"},{"name":"List Mandates","id":"72fc1f0e-4184-463e-8223-e259283e270b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Auth-Token","value":""}],"url":"/mandate?rpp=50&p=4","description":"<p>This endpoint returns a paginated list of all mandates on every customer.</p>\n","urlObject":{"path":["mandate"],"host":[""],"query":[{"key":"rpp","value":"50"},{"key":"p","value":"4"}],"variable":[]}},"response":[{"id":"b53b2acd-3368-44fd-b305-673a3989e284","name":"200","originalRequest":{"method":"GET","header":[{"key":"X-Auth-Token","value":""}],"url":{"raw":"https://api.neocollect.ng/test/mandate","host":["https://api.neocollect.ng/test"],"path":["mandate"],"query":[{"key":"rpp","value":"50","disabled":true},{"key":"p","value":"4","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 01:30:25 GMT"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"id\": \"5799520d-28ad-46e8-97b5-4f4fba9bfac2\",\n            \"mandate_code\": \"dfbmIIjPLTyLsTRQCqpVDPQOI\",\n            \"customer_id\": \"551896b0-2513-4460-89fa-f465b91fb0f4\",\n            \"batch_id\": \"97ef60ea-e9d2-4fc0-8522-87e1063cd296\",\n            \"signing_doc_url\": \"https://kddsxad.biz/kqyORGC.js\",\n            \"amount\": 47463,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"101\",\n            \"bank_name\": \"Balogun Gambari Microfinance Bank\",\n            \"customer_name\": \"Dr. Bulah Schulist\",\n            \"nuban\": \"QsGbNEapwbGEcQXpLsGYUUBKE\",\n            \"status\": \"pending\",\n            \"message\": \"Qui voluptatem aut aut sint voluptatem.\",\n            \"scheduled\": false,\n            \"schedule\": [\n                {\n                    \"id\": \"UVrVjjlGvPeIVgNxdPpjnDtxt\",\n                    \"mandate_id\": \"eQucqEUnNNbHMHNAvrxWmhEKD\",\n                    \"date\": \"2216-04-23T09:59:22.568768459+01:00\",\n                    \"amount\": 5,\n                    \"retry_on_fail\": true,\n                    \"narration\": \"wTHPUdqRyVmuXfSfNcQcQssIK\",\n                    \"executed\": true\n                },\n                {\n                    \"id\": \"OpsxyBucHKpuBnSIgQHPeAFsH\",\n                    \"mandate_id\": \"GCtdxLUtRfHnEZvvStIGTMRUO\",\n                    \"date\": \"2266-01-08T03:17:00.687131778+01:00\",\n                    \"amount\": 13,\n                    \"retry_on_fail\": true,\n                    \"narration\": \"xKhJULNFAyVrjDZFQVyEdxYee\",\n                    \"executed\": true\n                }\n            ]\n        },\n        {\n            \"id\": \"172c998c-dd2e-42be-94e6-1f45bbc6c0e5\",\n            \"mandate_code\": \"eEdiMCGsBScCFBqxjyXTIDaHr\",\n            \"customer_id\": \"c5be6f8e-14ef-4168-9b11-b649d215e2cf\",\n            \"batch_id\": \"1df38f27-9fa4-4795-a634-5491a25ad2c2\",\n            \"signing_doc_url\": \"https://www.tkmpwub.net/\",\n            \"amount\": 11131997,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"101\",\n            \"bank_name\": \"Balogun Gambari Microfinance Bank\",\n            \"customer_name\": \"Ms. Alia Ondricka\",\n            \"nuban\": \"FKvepinrtIldwsenvDAGjhDox\",\n            \"status\": \"failed\",\n            \"message\": \"Id voluptas facilis rerum animi labore.\",\n            \"scheduled\": true,\n            \"schedule\": []\n        },\n        {\n            \"id\": \"8ff5b885-5113-4eea-ae76-d370c02a9a92\",\n            \"mandate_code\": \"kPktAnfiixZAZQFXRNuhZWZuw\",\n            \"customer_id\": \"6313cae8-4b64-4a99-8abe-206413362452\",\n            \"batch_id\": \"b4950f31-cacd-4685-9a24-9d53bbc22309\",\n            \"signing_doc_url\": \"http://nrqzfup.ru/OsWpHwC.js\",\n            \"amount\": 993747,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"123\",\n            \"bank_name\": \"Broadview Microfinance Bank\",\n            \"customer_name\": \"Dr. Stephania Friesen\",\n            \"nuban\": \"wMphdaOCcBgCiAQhCNJSlDFkV\",\n            \"status\": \"failed\",\n            \"message\": \"Quod mollitia officiis excepturi velit ullam.\",\n            \"scheduled\": true,\n            \"schedule\": [\n                {\n                    \"id\": \"NuabAosjUslnXCgjWMRtObQJs\",\n                    \"mandate_id\": \"lhYZwyxwMoCDqTZqHnfuymEew\",\n                    \"date\": \"2101-02-20T17:36:02.048305744+01:00\",\n                    \"amount\": 40,\n                    \"retry_on_fail\": true,\n                    \"narration\": \"tiHvUhbcXXqkJpJIUaUbPOpYw\",\n                    \"executed\": false\n                }\n            ]\n        },\n        {\n            \"id\": \"4c177130-15b8-4be3-879d-0f72d8841a67\",\n            \"mandate_code\": \"WYYArRkDYIruIThQSgNFJBEHT\",\n            \"customer_id\": \"f336354c-b5f7-4b72-98aa-1d6c9c7b194e\",\n            \"batch_id\": \"361bf052-2198-4ade-aad8-937a5a43354a\",\n            \"signing_doc_url\": \"https://egoyifk.info/oXCcmId.webp\",\n            \"amount\": 11131997,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"456\",\n            \"bank_name\": \"Royal Exchange Microfinance Bank\",\n            \"customer_name\": \"Princess Vicky Hegmann\",\n            \"nuban\": \"ldoMAnnZEXnefCYDApFBFZBcq\",\n            \"status\": \"pending\",\n            \"message\": \"Omnis impedit voluptatem et odit vel.\",\n            \"scheduled\": false,\n            \"schedule\": [\n                {\n                    \"id\": \"jCvjFjPqqHlTGVDieCOPYmnvC\",\n                    \"mandate_id\": \"mtgCYmcSknPYovxMAxSQMNFju\",\n                    \"date\": \"2095-06-18T11:54:43.756323218+01:00\",\n                    \"amount\": 50,\n                    \"retry_on_fail\": false,\n                    \"narration\": \"uBqhFFpDSrhAoiDbDafWMvNJZ\",\n                    \"executed\": false\n                },\n                {\n                    \"id\": \"wwCdYLRiiMQdCYJfRjbvgjSml\",\n                    \"mandate_id\": \"RGclTupHlXRoFoWohjeVQOagp\",\n                    \"date\": \"2041-07-21T00:41:57.884526296+01:00\",\n                    \"amount\": 6,\n                    \"retry_on_fail\": true,\n                    \"narration\": \"uNoUVrZqoaNJSVErraNbeoOjM\",\n                    \"executed\": false\n                }\n            ]\n        },\n        {\n            \"id\": \"0ed784f0-55b1-4fad-97c1-7c721405f3f1\",\n            \"mandate_code\": \"OudFQBcVTdYUwXHOHUjDnfXvf\",\n            \"customer_id\": \"8a01a643-2667-4aad-93a1-b6317769b126\",\n            \"batch_id\": \"b4affee2-7588-4bc2-91ae-44c0d8fef594\",\n            \"signing_doc_url\": \"http://akjhitb.info/WUsrZRo.jpg\",\n            \"amount\": 11131997,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"456\",\n            \"bank_name\": \"Royal Exchange Microfinance Bank\",\n            \"customer_name\": \"Queen Mossie Reynolds\",\n            \"nuban\": \"rMTQJxspLKJrNmvcEKGLQgHEa\",\n            \"status\": \"pending\",\n            \"message\": \"Itaque voluptatibus dolorum laboriosam distinctio aut.\",\n            \"scheduled\": true,\n            \"schedule\": []\n        },\n        {\n            \"id\": \"a68628ae-9ea9-4e1c-a6af-d91ff63d5fb5\",\n            \"mandate_code\": \"KwXEwSOppsJhbaeNRJrkQXsjx\",\n            \"customer_id\": \"bde8c989-9d7e-4fa8-8d07-bb69b84ab83d\",\n            \"batch_id\": \"7e750136-48d1-425d-a6b9-0a642f98fe5c\",\n            \"signing_doc_url\": \"http://www.bqkiwul.org/bGLTSKv\",\n            \"amount\": 993747,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"123\",\n            \"bank_name\": \"Broadview Microfinance Bank\",\n            \"customer_name\": \"Miss April Roberts\",\n            \"nuban\": \"clsrRNjQeufwRExYnnAkxQaYw\",\n            \"status\": \"pending\",\n            \"message\": \"Ipsum facilis maiores nisi unde commodi.\",\n            \"scheduled\": false,\n            \"schedule\": []\n        },\n        {\n            \"id\": \"27ea1578-6ca4-4526-a527-500d76d4bf3c\",\n            \"mandate_code\": \"dLofgFAHAJGkqZxvoVGtTbrjO\",\n            \"customer_id\": \"77922c14-5cfd-462e-a598-a5f233126216\",\n            \"batch_id\": \"fe169435-91c1-4539-b195-ba962b32e654\",\n            \"signing_doc_url\": \"https://zcwtjdf.org/\",\n            \"amount\": 11131997,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"123\",\n            \"bank_name\": \"Broadview Microfinance Bank\",\n            \"customer_name\": \"Miss Roslyn Zemlak\",\n            \"nuban\": \"FYdoPcTvnSFQyOlLalMhTmWBr\",\n            \"status\": \"pending\",\n            \"message\": \"Quia deserunt dolorem ipsam nihil veritatis.\",\n            \"scheduled\": true,\n            \"schedule\": []\n        },\n        {\n            \"id\": \"b229fab9-1ad2-470e-a91d-597048cef2f1\",\n            \"mandate_code\": \"WkvsEihTlbkMkayYEIWSOexpc\",\n            \"customer_id\": \"cd41bb76-d2d6-49e3-b8ce-74ad4e663fb9\",\n            \"batch_id\": \"1b3ff9d0-6ff5-42f5-99f9-cf1802289207\",\n            \"signing_doc_url\": \"https://lowwdwj.com/bgkZCJC.php\",\n            \"amount\": 993747,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"456\",\n            \"bank_name\": \"Royal Exchange Microfinance Bank\",\n            \"customer_name\": \"Dr. Myrtle Beer\",\n            \"nuban\": \"aMcdOtYIyrJcAJaXAhcsxMHkO\",\n            \"status\": \"failed\",\n            \"message\": \"Et excepturi est necessitatibus dolor repellat.\",\n            \"scheduled\": true,\n            \"schedule\": [\n                {\n                    \"id\": \"aMXYKiaaSeaOjXptvPfWYRvxQ\",\n                    \"mandate_id\": \"yGsuKNMcCjupghBZlEDWvsMnC\",\n                    \"date\": \"2129-09-08T17:22:33.336947026+01:00\",\n                    \"amount\": 72,\n                    \"retry_on_fail\": true,\n                    \"narration\": \"ZtFtaIjAOxYlUHokSXuvNxMep\",\n                    \"executed\": false\n                },\n                {\n                    \"id\": \"OuVAMbMxoQbnQEaGHhBTaqKIW\",\n                    \"mandate_id\": \"pWBVdJFXfHAYDJufFqayrjZMD\",\n                    \"date\": \"2204-10-04T09:38:57.36044778+01:00\",\n                    \"amount\": 92,\n                    \"retry_on_fail\": true,\n                    \"narration\": \"ZGMxwqsoReACsqHDlEBMynaFi\",\n                    \"executed\": false\n                }\n            ]\n        },\n        {\n            \"id\": \"24b9e2e3-f0a4-4963-9e54-a90083f15178\",\n            \"mandate_code\": \"FplfrXhyqoQaoKMUemwgZbCHm\",\n            \"customer_id\": \"dbec2fa7-2630-4875-b848-4129dafe1ef2\",\n            \"batch_id\": \"dc63cdfb-def0-4aeb-8aee-222b11e1a664\",\n            \"signing_doc_url\": \"https://www.nrtrkvr.ru/\",\n            \"amount\": 47463,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"123\",\n            \"bank_name\": \"Broadview Microfinance Bank\",\n            \"customer_name\": \"Ms. Helga Pacocha\",\n            \"nuban\": \"RDkYlvpMmynXtnesapLsCeeOb\",\n            \"status\": \"pending\",\n            \"message\": \"Aut praesentium odit et qui tempore.\",\n            \"scheduled\": true,\n            \"schedule\": [\n                {\n                    \"id\": \"KIipoMgUSAJVNdwdGAPILgglu\",\n                    \"mandate_id\": \"thCgDrgSeLIcVUJWqUlcMIFmZ\",\n                    \"date\": \"2218-02-28T07:40:33.633298156+01:00\",\n                    \"amount\": 94,\n                    \"retry_on_fail\": true,\n                    \"narration\": \"mMHNyLWaotmTZycBNnFqGqKrF\",\n                    \"executed\": false\n                },\n                {\n                    \"id\": \"SWVFggTQuRlXTVHemyjhODevK\",\n                    \"mandate_id\": \"InGWohefLTntdjIiOvZwQfIIm\",\n                    \"date\": \"2194-10-10T12:16:54.977106748+01:00\",\n                    \"amount\": 80,\n                    \"retry_on_fail\": false,\n                    \"narration\": \"LAkjKErLqcdYdBlKydIVYPGLt\",\n                    \"executed\": true\n                }\n            ]\n        },\n        {\n            \"id\": \"de02b07a-9fce-4c88-bb3f-db2fdfdf5520\",\n            \"mandate_code\": \"EGBIIxwPErGyYPlNimPStIrrR\",\n            \"customer_id\": \"847871e3-b480-4187-8f50-10abc0b4ae33\",\n            \"batch_id\": \"dd9e6147-2fc4-492a-9fd3-7c6398d859f3\",\n            \"signing_doc_url\": \"https://rabbpib.ru/FXsEaEO.php\",\n            \"amount\": 993747,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"456\",\n            \"bank_name\": \"Royal Exchange Microfinance Bank\",\n            \"customer_name\": \"Princess Mae Botsford\",\n            \"nuban\": \"hdRQxkaTdksjefQwNDNxtXwkV\",\n            \"status\": \"failed\",\n            \"message\": \"Labore saepe illum vel quis qui.\",\n            \"scheduled\": false,\n            \"schedule\": [\n                {\n                    \"id\": \"RjaTQkhtyoGGiiMcFvPiOMKNv\",\n                    \"mandate_id\": \"OrVHwZVYTWDJJGQailhEmNKiQ\",\n                    \"date\": \"2247-05-25T07:00:20.784873425+01:00\",\n                    \"amount\": 47,\n                    \"retry_on_fail\": true,\n                    \"narration\": \"sApcLLsabfJSDNnbyoAQuqlww\",\n                    \"executed\": false\n                },\n                {\n                    \"id\": \"hpydudKWChBioYGhJuGgZcARC\",\n                    \"mandate_id\": \"lxqNTiWPqARNZMRmRGkiLDKlx\",\n                    \"date\": \"2242-02-13T06:28:35.364199245+01:00\",\n                    \"amount\": 19,\n                    \"retry_on_fail\": true,\n                    \"narration\": \"jEaeAqYWoUrNluLoFRBRKjwgo\",\n                    \"executed\": false\n                }\n            ]\n        },\n        {\n            \"id\": \"2797879b-f7fa-4a2b-b304-cd766eb48642\",\n            \"mandate_code\": \"rDZJvjNuCGheMxCNlxhEdJsFP\",\n            \"customer_id\": \"b3d6c457-7c1c-47d2-ba1f-5ee2ec72b79e\",\n            \"batch_id\": \"ebda8d08-41f3-43b1-8c9e-0e62024081c0\",\n            \"signing_doc_url\": \"http://www.qwnesuh.biz/\",\n            \"amount\": 47463,\n            \"start_date\": \"11/27/2024\",\n            \"end_date\": \"11/27/2024\",\n            \"bank_code\": \"123\",\n            \"bank_name\": \"Broadview Microfinance Bank\",\n            \"customer_name\": \"Princess Priscilla Koelpin\",\n            \"nuban\": \"IvPZnKUndpqApZUbTIVbVVayM\",\n            \"status\": \"failed\",\n            \"message\": \"Atque hic rem voluptatem blanditiis veniam.\",\n            \"scheduled\": false,\n            \"schedule\": [\n                {\n                    \"id\": \"qGpVodPMafgmxQxpCiEsONcaj\",\n                    \"mandate_id\": \"IfIQyCemZdhiHXglCUKIRBEqs\",\n                    \"date\": \"2175-09-28T06:02:28.05379509+01:00\",\n                    \"amount\": 14,\n                    \"retry_on_fail\": false,\n                    \"narration\": \"WRmUEMaSuayuZWHyayRgiEHvZ\",\n                    \"executed\": true\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"72fc1f0e-4184-463e-8223-e259283e270b"},{"name":"Delete Mandate","id":"bc225f61-1afe-44de-965b-7f8851e1778b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":""}],"url":"/mandate/:id","description":"<p>This endpoint deletes a mandate on a customer's account.</p>\n","urlObject":{"path":["mandate",":id"],"host":[""],"query":[],"variable":[{"id":"8ad93b22-c415-4d27-b713-59f6edc07af6","type":"any","value":"","key":"id"}]}},"response":[{"id":"8e09618f-dfa4-439e-a53c-e38c7676dbda","name":"200","originalRequest":{"method":"DELETE","header":[{"key":"X-Auth-Token","value":""}],"url":{"raw":"/mandate/:id","host":[""],"path":["mandate",":id"],"variable":[{"key":"id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bc225f61-1afe-44de-965b-7f8851e1778b"},{"name":"Charge Mandate","id":"12d30af8-5369-440d-8825-6de05f17033a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Auth-Token","value":""}],"url":"/mandate/:id/charge?amount=80000","description":"<p>This endpoint charges a certain amount on a customer's account.</p>\n","urlObject":{"path":["mandate",":id","charge"],"host":[""],"query":[{"description":{"content":"<p>kobo</p>\n<p>required</p>\n","type":"text/plain"},"key":"amount","value":"80000"}],"variable":[{"id":"cba52c02-0a78-4ff7-b025-6637da7b8695","description":{"content":"<p>required</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"a86ad8a5-f70d-4f8d-9647-44c14d2744bc","name":"200","originalRequest":{"method":"POST","header":[{"key":"X-Auth-Token","value":""}],"url":{"raw":"/mandate/:id/charge?amount=80000","host":[""],"path":["mandate",":id","charge"],"query":[{"key":"amount","value":"80000"}],"variable":[{"key":"id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\"\n}"}],"_postman_id":"12d30af8-5369-440d-8825-6de05f17033a"},{"name":"Update Mandate","id":"03ebd6ec-c542-49b5-b048-167f8deca1d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"X-Auth-Token","value":""}],"body":{"mode":"raw","raw":"{\n    \"schedule\": [\n        {\n            \"date\": \"01/01/2024\",\n            \"amount\": 504444,\n            \"retry_on_fail\": false,\n            \"narrattion\": \"January debit\"\n        },\n\n        {\n            \"date\": \"02/01/2024\",\n            \"amount\": 504444,\n            \"retry_on_fail\": true,\n            \"narrattion\": \"feb debit\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"/mandate/:id","description":"<p>This endpoint updates the payment/charge schedule on a mandate</p>\n<h3 id=\"request-body\">Request Body</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>schedule</td>\n<td>List of schedule objects</td>\n<td>Array</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>schedule.date</td>\n<td>Date of the scheduled transaction (DD/MM/YYYY)</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>schedule.amount</td>\n<td>Amount (<strong>In Kobo</strong>) for the scheduled transaction</td>\n<td>Number</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>schedule.retry_on_fail</td>\n<td>Indicates if retry is allowed on failure</td>\n<td>Boolean</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>schedule.narration</td>\n<td>Description or note for the transaction</td>\n<td>String</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["mandate",":id"],"host":[""],"query":[],"variable":[{"id":"7b21b978-0004-46df-8f6d-f29e08cb6fd0","type":"any","value":"","key":"id"}]}},"response":[],"_postman_id":"03ebd6ec-c542-49b5-b048-167f8deca1d5"},{"name":"Sign Global Mandate","id":"739a3825-f9d6-430c-9076-9e5b0c33c951","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"PATCH","header":[{"key":"Accept","value":"multipart/form-data","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"document","type":"file","src":"/Users/danielolanrewaju/Downloads/NEOCOLLECT-global-mandate-agreement-241120172611 (signed).pdf"}]},"url":"https://api.neocollect.ng/test/mandate/:batchId","urlObject":{"path":["mandate",":batchId"],"host":["https://api.neocollect.ng/test"],"query":[],"variable":[{"type":"any","value":"","key":"batchId"}]}},"response":[{"id":"dbfd2e4d-416f-4987-8287-8042c3119318","name":"New Request","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"multipart/form-data","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"document","type":"file","src":"/Users/danielolanrewaju/Downloads/NEOCOLLECT-global-mandate-agreement-241120172611 (signed).pdf"}]},"url":{"raw":"https://api.neocollect.ng/test/mandate/:batchId","host":["https://api.neocollect.ng/test"],"path":["mandate",":batchId"],"variable":[{"key":"batchId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 01:29:56 GMT"},{"key":"Content-Length","value":"33"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"success\",\n    \"data\": null\n}"}],"_postman_id":"739a3825-f9d6-430c-9076-9e5b0c33c951"}],"id":"f1ef4ce8-7127-4c6a-9cd9-a1ac41eee55a","description":"<p>List, create and manage all direct debit mandates on customers</p>\n","_postman_id":"f1ef4ce8-7127-4c6a-9cd9-a1ac41eee55a"},{"name":"Webhooks","item":[{"name":"New Request","id":"893b8a13-d138-41fd-89e7-eb551b260995","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"893b8a13-d138-41fd-89e7-eb551b260995"}],"id":"65eeed73-19bd-46af-8fbe-87718448c6f7","description":"<p>Overview</p>\n<hr />\n<p>To ensure effective communication between our services and yours, we have set up webhooks to notify you of updates, even when you are not actively waiting.</p>\n<hr />\n<h3 id=\"coming-soon\"><em>Coming Soon...</em></h3>\n","_postman_id":"65eeed73-19bd-46af-8fbe-87718448c6f7"},{"name":"Utilities","item":[{"name":"Get Banks","id":"ac743bc8-98a4-41d0-ba3c-78bebf0cb2e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"829fe612-ede0-4b11-a8eb-1a83a087d541","name":"200 - Success","originalRequest":{"method":"GET","header":[],"url":"https://api.neocollect.ng/test/utilities/get-banks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Headers","value":"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, X-Requested-With, X-Auth-Token, ngrok-skip-browser-warning"},{"key":"Access-Control-Allow-Methods","value":"POST, OPTIONS, GET, PUT, PATCH, DELETE"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 27 Nov 2024 10:29:30 GMT"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"banks for transfer\",\n    \"data\": [\n        {\n            \"name\": \"Access Bank\",\n            \"id\": \"001\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Alternative Bank\",\n            \"id\": \"002\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Central Bank of Nigeria\",\n            \"id\": \"003\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Citi Bank\",\n            \"id\": \"004\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Diamond Bank\",\n            \"id\": \"005\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ecobank\",\n            \"id\": \"006\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"eNaira\",\n            \"id\": \"007\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Enterprise Bank\",\n            \"id\": \"008\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FCMB\",\n            \"id\": \"009\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Fidelity Bank\",\n            \"id\": \"010\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"First Bank\",\n            \"id\": \"011\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Globus Bank\",\n            \"id\": \"012\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"GT Bank\",\n            \"id\": \"013\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Heritage Bank\",\n            \"id\": \"014\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"JAIZ Bank\",\n            \"id\": \"015\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Keystone Bank\",\n            \"id\": \"016\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Lotus Bank\",\n            \"id\": \"017\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Optimus Bank\",\n            \"id\": \"018\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Parallex Bank\",\n            \"id\": \"019\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Polaris Bank\",\n            \"id\": \"020\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Premium Trust Bank\",\n            \"id\": \"021\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Providus Bank\",\n            \"id\": \"022\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Signature Bank\",\n            \"id\": \"023\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Stanbic IBTC Bank\",\n            \"id\": \"024\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Standard Chartered Bank\",\n            \"id\": \"025\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Sterling Bank\",\n            \"id\": \"026\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Suntrust Bank\",\n            \"id\": \"027\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Taj Bank\",\n            \"id\": \"028\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Titan Trust Bank\",\n            \"id\": \"029\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Union Bank\",\n            \"id\": \"030\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"United Bank for Africa\",\n            \"id\": \"031\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Unity Bank\",\n            \"id\": \"032\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Wema Bank\",\n            \"id\": \"033\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Zenith Bank\",\n            \"id\": \"034\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"78 Finance Company Limited\",\n            \"id\": \"035\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"9mobile 9Payment Service Bank\",\n            \"id\": \"036\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"AAA Finance\",\n            \"id\": \"037\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"AB Microfinance Bank\",\n            \"id\": \"038\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Abbey Mortgage Bank\",\n            \"id\": \"039\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Above Only Microfinance Bank\",\n            \"id\": \"041\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"ABSU MFB\",\n            \"id\": \"042\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"ABU Microfinance Bank\",\n            \"id\": \"043\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Abulesoro Microfinance Bank\",\n            \"id\": \"045\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Access Yello\",\n            \"id\": \"047\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"AccessMobile\",\n            \"id\": \"048\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Accion Microfinance Bank\",\n            \"id\": \"049\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ada Microfinance Bank\",\n            \"id\": \"050\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Addosser Microfinance Bank\",\n            \"id\": \"051\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Adeyemi College Staff Microfinance Bank\",\n            \"id\": \"052\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Advans La Fayette  Microfinance Bank\",\n            \"id\": \"053\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Afekhafe Microfinance Bank\",\n            \"id\": \"054\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Afemai Microfinance Bank\",\n            \"id\": \"055\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"AG Mortgage Bank\",\n            \"id\": \"056\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Akpo Microfinance Bank\",\n            \"id\": \"059\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Aku Microfinance Bank\",\n            \"id\": \"060\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Akuchuckwu Microfinance Bank\",\n            \"id\": \"061\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Akwa Savings & Loans Limited\",\n            \"id\": \"062\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"AL-Barakah Microfinance Bank\",\n            \"id\": \"063\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Al-Hayat Microfinance Bank\",\n            \"id\": \"064\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Alekun Microfinance Bank\",\n            \"id\": \"066\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Alert Microfinance Bank\",\n            \"id\": \"067\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Allworkers Microfinance Bank\",\n            \"id\": \"068\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ally Microfinance Bank\",\n            \"id\": \"069\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Alpha Kapital Microfinance Bank\",\n            \"id\": \"070\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Alvana Microfinance Bank\",\n            \"id\": \"071\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Amac Microfinance Bank\",\n            \"id\": \"072\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Amegy MFB\",\n            \"id\": \"073\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Amju Unique MFB\",\n            \"id\": \"074\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"AMML MFB\",\n            \"id\": \"075\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Amoye Microfinance Bank\",\n            \"id\": \"076\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ampersand Microfinance Bank\",\n            \"id\": \"077\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Amucha MFB\",\n            \"id\": \"078\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Anchorage  Microfinance Bank\",\n            \"id\": \"079\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Aniocha Microfinance bank\",\n            \"id\": \"080\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Apeks Microfinance Bank\",\n            \"id\": \"081\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Apple Microfinance Bank\",\n            \"id\": \"082\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Aramoko Microfinance Bank\",\n            \"id\": \"084\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Arise Microfinance Bank\",\n            \"id\": \"085\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"ASOSavings & Loans\",\n            \"id\": \"086\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Aspire Microfinance Bank\",\n            \"id\": \"087\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"AssetMatrix Microfinance Bank\",\n            \"id\": \"088\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Assets Microfinance Bank\",\n            \"id\": \"089\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Astrapolaris MFB LTD\",\n            \"id\": \"090\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Auchi Microfinance Bank\",\n            \"id\": \"091\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ave Maria Microfinance Bank\",\n            \"id\": \"092\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Awacash MFB\",\n            \"id\": \"094\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Awesome MFB\",\n            \"id\": \"095\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Aztec Microfinance Bank\",\n            \"id\": \"096\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Babura MFB\",\n            \"id\": \"097\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Bainescredit MFB\",\n            \"id\": \"098\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Balera Microfinance Bank\",\n            \"id\": \"099\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Balogun Fulani Microfinance Bank\",\n            \"id\": \"100\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Balogun Gambari Microfinance Bank\",\n            \"id\": \"101\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Bam MFB\",\n            \"id\": \"102\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Banc Corp MFB\",\n            \"id\": \"103\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"BC Kash Microfinance Bank\",\n            \"id\": \"104\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Berachah MFB\",\n            \"id\": \"105\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Beststar MFB\",\n            \"id\": \"106\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"BIPC Microfinance Bank\",\n            \"id\": \"107\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"BishopGate Microfinance Bank\",\n            \"id\": \"108\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"BluePrint Investments Microfinance Bank\",\n            \"id\": \"109\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Boctrust Microfinance Bank\",\n            \"id\": \"110\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"BOI Microfinance Bank\",\n            \"id\": \"111\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Boji MFB\",\n            \"id\": \"112\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Borgu  Microfinance Bank\",\n            \"id\": \"113\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Bosak Microfinance Bank\",\n            \"id\": \"114\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Bowen Microfinance Bank\",\n            \"id\": \"115\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Branch International Financial Services\",\n            \"id\": \"116\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Brent Mortgage Bank\",\n            \"id\": \"118\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Brethren Microfinance Bank\",\n            \"id\": \"119\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Bridgeway Microfinance Bank\",\n            \"id\": \"120\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Brightway Microfinance Bank\",\n            \"id\": \"121\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Briyth-Covenant MFB\",\n            \"id\": \"122\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Broadview Microfinance Bank\",\n            \"id\": \"123\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Bundi MFB\",\n            \"id\": \"124\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Bunkure MFB\",\n            \"id\": \"125\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Business Support Microfinance Bank\",\n            \"id\": \"126\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Canaan MFB\",\n            \"id\": \"127\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Caretaker Microfinance Bank\",\n            \"id\": \"129\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Cashbridge MFB\",\n            \"id\": \"130\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"CASHCONNECT MFB\",\n            \"id\": \"131\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Cashrite MFB\",\n            \"id\": \"132\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Catland MFB\",\n            \"id\": \"133\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Cedar Microfinance Bank\",\n            \"id\": \"134\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Cellulant\",\n            \"id\": \"135\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"CEMCS Microfinance Bank\",\n            \"id\": \"136\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Changan RTS Microfinance Bank\",\n            \"id\": \"138\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Chase Microfinance Bank\",\n            \"id\": \"139\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Chikum Microfinance Bank\",\n            \"id\": \"140\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Chukwunenye MFB\",\n            \"id\": \"141\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Cintrust Microfinance Bank\",\n            \"id\": \"142\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"CIT Microfinance Bank\",\n            \"id\": \"143\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"CityCode Mortgage Bank Ltd\",\n            \"id\": \"144\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Coalcamp Microfinance Bank\",\n            \"id\": \"145\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Coastline Microfinance Bank\",\n            \"id\": \"146\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Confidence MFB\",\n            \"id\": \"147\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Conpro  Microfinance Bank\",\n            \"id\": \"148\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Consistent Trust Microfinance Bank\",\n            \"id\": \"149\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Consumer Microfinance Bank\",\n            \"id\": \"150\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Contec Global Infotech Limited (NowNow)\",\n            \"id\": \"151\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Coop Mortgage Bank\",\n            \"id\": \"152\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Corestep MFB\",\n            \"id\": \"153\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Coronation Merchant Bank\",\n            \"id\": \"154\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Covenant MFB\",\n            \"id\": \"156\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Credit Afrique Microfinance Bank\",\n            \"id\": \"157\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Creditville MFB\",\n            \"id\": \"158\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Crescent Microfinance Bank\",\n            \"id\": \"160\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"CS Advance\",\n            \"id\": \"162\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"DAL MFB\",\n            \"id\": \"163\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Davenport MFB\",\n            \"id\": \"164\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Davodani Microfinance Bank\",\n            \"id\": \"166\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Daylight Microfinance Bank\",\n            \"id\": \"167\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Delta Trust Microfinance Bank\",\n            \"id\": \"168\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Dignity Finance\",\n            \"id\": \"169\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Diobu MFB\",\n            \"id\": \"170\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"e-Barcs Microfinance Bank\",\n            \"id\": \"172\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"E-Finance\",\n            \"id\": \"173\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Eagle Flight Microfinance Bank\",\n            \"id\": \"174\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Earnwell Microfinance Bank\",\n            \"id\": \"175\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Eartholeum\",\n            \"id\": \"176\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ecobank Xpress Account\",\n            \"id\": \"177\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"EcoMobile\",\n            \"id\": \"178\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"EdFin Microfinance Bank\",\n            \"id\": \"179\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Egwafin Microfinance Bank\",\n            \"id\": \"180\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"EK-Reliable Microfinance Bank\",\n            \"id\": \"181\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ekondo MFB\",\n            \"id\": \"183\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Emeralds Microfinance Bank\",\n            \"id\": \"184\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Empire trust MFB\",\n            \"id\": \"185\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Enco Finance\",\n            \"id\": \"186\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Enrich Microfinance Bank\",\n            \"id\": \"187\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Entity MFB\",\n            \"id\": \"188\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Esan Microfinance Bank\",\n            \"id\": \"189\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Eso-E Microfinance Bank\",\n            \"id\": \"190\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"eTranzact\",\n            \"id\": \"191\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Evangel Microfinance Bank\",\n            \"id\": \"192\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Evergreen Microfinance Bank\",\n            \"id\": \"193\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"EWT Microfinance Bank\",\n            \"id\": \"194\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Excel MFB\",\n            \"id\": \"195\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Excellent Microfinance Bank\",\n            \"id\": \"196\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Eyowo\",\n            \"id\": \"197\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FairMoney Microfinance Bank\",\n            \"id\": \"198\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Fast Credit\",\n            \"id\": \"199\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FAST Microfinance Bank\",\n            \"id\": \"200\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FBN Mortgages Limited\",\n            \"id\": \"201\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FBNMobile\",\n            \"id\": \"202\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FBNQUEST Merchant Bank\",\n            \"id\": \"203\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FCMB BETA\",\n            \"id\": \"204\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FCMB Easy Account\",\n            \"id\": \"205\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FCT Microfinance Bank\",\n            \"id\": \"206\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Federal Polytechnic Nekede Microfinance Bank\",\n            \"id\": \"207\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Federal University Dutse Microfinance Bank\",\n            \"id\": \"208\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Fedeth Microfinance Bank\",\n            \"id\": \"210\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FedPoly Nasarawa Microfinance Bank\",\n            \"id\": \"211\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FET\",\n            \"id\": \"212\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FEWCHORE FINANCE COMPANY LIMITED\",\n            \"id\": \"213\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FFS Microfinance Bank\",\n            \"id\": \"214\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FHA Mortgage Bank\",\n            \"id\": \"215\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Fidelity Mobile\",\n            \"id\": \"216\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Fidfund Microfinance Bank\",\n            \"id\": \"217\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FIMS MFB\",\n            \"id\": \"218\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FinaTrust Microfinance Bank\",\n            \"id\": \"219\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Firmus MFB\",\n            \"id\": \"220\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"First Generation Mortgage Bank\",\n            \"id\": \"221\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"First Midas Microfinance Bank\",\n            \"id\": \"222\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"First Option Microfinance Bank\",\n            \"id\": \"223\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"First Royal Microfinance Bank\",\n            \"id\": \"224\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Flourish MFB\",\n            \"id\": \"226\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Fortis Microfinance Bank\",\n            \"id\": \"227\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FortisMobile\",\n            \"id\": \"228\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"FSDH Merchant Bank\",\n            \"id\": \"229\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Fullrange Microfinance Bank\",\n            \"id\": \"230\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Fundquest Financial Services Limited\",\n            \"id\": \"231\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Futo Microfinance Bank\",\n            \"id\": \"233\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Gabasawa MFB\",\n            \"id\": \"234\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Gabsyn Microfinance Bank Limited\",\n            \"id\": \"235\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Gashua Microfinance Bank\",\n            \"id\": \"236\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Gateway Mortgage Bank\",\n            \"id\": \"237\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Gbede Microfinance Bank\",\n            \"id\": \"238\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Giant Stride Microfinance Bank\",\n            \"id\": \"239\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Gidauniyar Alheri MFB\",\n            \"id\": \"240\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Giginya Microfinance bank\",\n            \"id\": \"241\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Girei Microfinance Bank\",\n            \"id\": \"242\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Global Initiative MFB\",\n            \"id\": \"243\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Glory Microfinance Bank\",\n            \"id\": \"244\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"GMB Microfinance Bank\",\n            \"id\": \"245\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"GOLDMAN MFB\",\n            \"id\": \"246\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Gombe MFB\",\n            \"id\": \"247\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"GoMoney\",\n            \"id\": \"248\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Good Neigbours Microfinance Bank\",\n            \"id\": \"249\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Good Shephard MFB\",\n            \"id\": \"250\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Goodnews Microfinance Bank\",\n            \"id\": \"251\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Gowans Microfinance Bank\",\n            \"id\": \"252\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Green Energy Microfinance Bank\",\n            \"id\": \"253\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"GreenBank Microfinance Bank\",\n            \"id\": \"254\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Greenville Microfinance Bank\",\n            \"id\": \"255\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Greenwich Merchant Bank\",\n            \"id\": \"256\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Grooming Microfinance Bank\",\n            \"id\": \"257\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"GTI Microfinance Bank\",\n            \"id\": \"258\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"GTMobile\",\n            \"id\": \"259\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Gwong MFB\",\n            \"id\": \"260\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Hackman Microfinance Bank\",\n            \"id\": \"261\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Haggai Mortgage Bank Limited\",\n            \"id\": \"262\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Halal Credit Microfinance Bank\",\n            \"id\": \"263\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Hasal Microfinance Bank\",\n            \"id\": \"264\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Headway Microfinance Bank\",\n            \"id\": \"265\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Hedonmark\",\n            \"id\": \"266\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"HighStreet Microfinance Bank\",\n            \"id\": \"267\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Homebase Mortgage Bank\",\n            \"id\": \"268\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"HopePSB\",\n            \"id\": \"269\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"IBA Microfinance Bank\",\n            \"id\": \"270\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"IBILE Microfinance Bank\",\n            \"id\": \"271\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"IBOLO Microfinance Bank\",\n            \"id\": \"272\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Iboma Fadama Microfinance Bank\",\n            \"id\": \"273\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ibu-Aje Microfinance Bank\",\n            \"id\": \"274\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ijebu-Ife Microfinance Bank\",\n            \"id\": \"275\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ikenne Microfinance Bank\",\n            \"id\": \"276\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ikire Microfinance Bank\",\n            \"id\": \"277\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ikoyi Osun MFB\",\n            \"id\": \"278\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ilaro Poly Microfinance Bank\",\n            \"id\": \"279\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ilisan Microfinance Bank\",\n            \"id\": \"280\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Imo State Microfinance Bank\",\n            \"id\": \"281\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"IMPERIAL HOMES MORTAGE BANK\",\n            \"id\": \"283\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"IMSU MFB\",\n            \"id\": \"284\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Infinity MFB\",\n            \"id\": \"285\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Infinity Trust Mortgage Bank\",\n            \"id\": \"286\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Intellifin\",\n            \"id\": \"287\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Interland Microfinance Bank\",\n            \"id\": \"288\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"IRL Microfinance Bank\",\n            \"id\": \"289\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Isaleoyo Microfinance Bank\",\n            \"id\": \"290\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Island Microfinance Bank\",\n            \"id\": \"291\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Iwade MFB Ltd\",\n            \"id\": \"292\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Iwoama Microfinance Bank\",\n            \"id\": \"293\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Iyamoye Microfinance Bank\",\n            \"id\": \"294\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Iyeru Okin Microfinance Bank\",\n            \"id\": \"295\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Iyin Ekiti MFB\",\n            \"id\": \"296\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Jessefield Microfinance Bank\",\n            \"id\": \"297\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Jubilee-Life Mortgage  Bank\",\n            \"id\": \"298\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Kadpoly MFB\",\n            \"id\": \"299\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Kadupe MFB\",\n            \"id\": \"300\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Kayi MFB\",\n            \"id\": \"302\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Kayvee Microfinance Bank\",\n            \"id\": \"303\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"KC Microfinance Bank\",\n            \"id\": \"304\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"KCMB Microfinance Bank\",\n            \"id\": \"305\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Kegow (Chamsmobile)\",\n            \"id\": \"306\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Kenechukwu Microfinance Bank\",\n            \"id\": \"307\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"KKU MFB\",\n            \"id\": \"308\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Kontagora Microfinance Bank\",\n            \"id\": \"309\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Kopo Kope MFB\",\n            \"id\": \"310\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Kuda Bank\",\n            \"id\": \"312\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Lagos Building Investment Company\",\n            \"id\": \"313\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Lapo Microfinance Bank\",\n            \"id\": \"314\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Lavender Microfinance Bank\",\n            \"id\": \"315\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Leadcity MFB\",\n            \"id\": \"316\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Legend Microfinance Bank\",\n            \"id\": \"317\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Lifegate Microfinance Bank\",\n            \"id\": \"318\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Light MFB\",\n            \"id\": \"319\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Lobrem Microfinance Bank\",\n            \"id\": \"322\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Lovonus Microfinance Bank\",\n            \"id\": \"324\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Lukefield Finance Company Limited\",\n            \"id\": \"325\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"M36\",\n            \"id\": \"326\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"MAB Allianz MFB\",\n            \"id\": \"327\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Mabinas MFB\",\n            \"id\": \"328\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Macrod MFB\",\n            \"id\": \"329\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Madobi MFB\",\n            \"id\": \"330\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Mainland Microfinance Bank\",\n            \"id\": \"331\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Mainstreet Microfinance Bank\",\n            \"id\": \"332\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Maintrust Microfinance Bank\",\n            \"id\": \"333\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Malachy Microfinance Bank\",\n            \"id\": \"334\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Maritime Microfinance Bank\",\n            \"id\": \"335\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Mayfair MFB\",\n            \"id\": \"336\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"MayFresh Mortgage Bank\",\n            \"id\": \"337\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Medef Microfinance Bank\",\n            \"id\": \"338\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Megapraise Microfinance Bank\",\n            \"id\": \"339\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Mercury MFB\",\n            \"id\": \"340\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Mgbidi Microfinance Bank\",\n            \"id\": \"341\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Microbiz MFB\",\n            \"id\": \"342\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Microcred Microfinance Bank\",\n            \"id\": \"343\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Midland Microfinance Bank\",\n            \"id\": \"344\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"MINJIBIR MFB\",\n            \"id\": \"345\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"MintFinex Microfinance Bank\",\n            \"id\": \"347\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Mkobo Microfinance Bank\",\n            \"id\": \"348\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Mkudi\",\n            \"id\": \"349\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Molusi Microfinance Bank\",\n            \"id\": \"350\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"MoMo PSB\",\n            \"id\": \"351\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Money Master PSB\",\n            \"id\": \"352\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Money Trust Microfinance Bank\",\n            \"id\": \"353\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"MoneyBox\",\n            \"id\": \"354\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Moniepoint MFB\",\n            \"id\": \"355\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"MOUA MFB\",\n            \"id\": \"356\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Moyofade Microfinance Bank\",\n            \"id\": \"357\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Mutual Benefits Microfinance Bank\",\n            \"id\": \"359\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Mutual Trust Microfinance Bank\",\n            \"id\": \"360\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nagarta Microfinance Bank\",\n            \"id\": \"361\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nassarawa Microfinance Bank\",\n            \"id\": \"362\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Navy Microfinance Bank\",\n            \"id\": \"363\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"NDDC MFB\",\n            \"id\": \"364\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ndiorah Microfinance Bank\",\n            \"id\": \"365\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Neptune Microfinance Bank\",\n            \"id\": \"366\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"New Dawn Microfinance Bank\",\n            \"id\": \"367\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"New Golden Pastures Microfinance Bank\",\n            \"id\": \"368\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"New Prudential Bank\",\n            \"id\": \"369\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"NEXIM Bank\",\n            \"id\": \"370\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nigerian Prisons Microfinance Bank\",\n            \"id\": \"372\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"NIRSAL Microfinance Bank\",\n            \"id\": \"373\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nkpolu-Ust MFB\",\n            \"id\": \"374\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nnew Women Microfinance Bank\",\n            \"id\": \"375\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nova Merchant Bank\",\n            \"id\": \"376\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"NPF MicroFinance Bank\",\n            \"id\": \"377\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nsehe MFB\",\n            \"id\": \"378\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nsuk MFB\",\n            \"id\": \"379\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nuggets MFB\",\n            \"id\": \"380\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Numo Microfinance Bank\",\n            \"id\": \"381\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nuture Microfinance Bank\",\n            \"id\": \"382\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Nwannegadi Microfinance Bank\",\n            \"id\": \"383\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"OAU Microfinance Bank\",\n            \"id\": \"384\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Oche Microfinance Bank\",\n            \"id\": \"385\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Octopus Microfinance Bank\",\n            \"id\": \"386\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Odoakpu MFB\",\n            \"id\": \"387\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ohafia Microfinance Bank\",\n            \"id\": \"388\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ohha MFB\",\n            \"id\": \"389\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ojokoro Microfinance Bank\",\n            \"id\": \"390\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Oke-Aro Oredegbe Microfinance Bank\",\n            \"id\": \"391\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Okengwe MFB\",\n            \"id\": \"392\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Okpoga Microfinance Bank\",\n            \"id\": \"393\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Okuku Microfinance Bank\",\n            \"id\": \"394\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Olabisi Onabanjo University Microfinance Bank\",\n            \"id\": \"395\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"OLOFIN OWENA Microfinance Bank\",\n            \"id\": \"396\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Olowolagba Microfinance Bank\",\n            \"id\": \"397\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Oluchukwu Microfinance Bank\",\n            \"id\": \"398\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Omiye Microfinance Bank\",\n            \"id\": \"399\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Omoluabi savings and loans\",\n            \"id\": \"400\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"One Finance\",\n            \"id\": \"401\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Opay\",\n            \"id\": \"402\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Oraukwu MFB\",\n            \"id\": \"403\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Orisun MFB\",\n            \"id\": \"404\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Orokam Microfinance Bank\",\n            \"id\": \"405\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Oscotech Microfinance Bank\",\n            \"id\": \"406\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Otech Microfinance Bank\",\n            \"id\": \"407\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Otuo Microfinance Bank\",\n            \"id\": \"408\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Oyan MFB\",\n            \"id\": \"409\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Paga\",\n            \"id\": \"410\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Page Financials\",\n            \"id\": \"411\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"PalmPay\",\n            \"id\": \"412\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Parkway - ReadyCash\",\n            \"id\": \"413\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Pathfinder MFB\",\n            \"id\": \"414\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"PatrickGold Microfinance Bank\",\n            \"id\": \"416\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"PayAttitude Online\",\n            \"id\": \"417\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"PecanTrust Microfinance Bank\",\n            \"id\": \"420\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Pennywise Microfinance Bank\",\n            \"id\": \"421\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Personal Trust MFB\",\n            \"id\": \"422\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Petra Microfinance Bank\",\n            \"id\": \"423\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"PFI Finance Company Limited\",\n            \"id\": \"424\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Pillar Microfinance Bank\",\n            \"id\": \"425\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Platinum Mortgage Bank\",\n            \"id\": \"426\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Polybadan Microfinance Bank\",\n            \"id\": \"428\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Polyunwana MFB\",\n            \"id\": \"429\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Preeminent Microfinance Bank\",\n            \"id\": \"430\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Prestige Microfinance Bank\",\n            \"id\": \"431\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Pristine Divitis Microfinance Bank\",\n            \"id\": \"432\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Projects Microfinance Bank\",\n            \"id\": \"433\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Prophius\",\n            \"id\": \"434\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Prosperis Finance Limited\",\n            \"id\": \"435\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Prosperity MFB\",\n            \"id\": \"436\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Purplemoney Microfinance Bank\",\n            \"id\": \"437\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Pyramid MFB\",\n            \"id\": \"438\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Qube Microfinance Bank\",\n            \"id\": \"439\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"QuickFund MFB\",\n            \"id\": \"440\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Rand Merchant Bank\",\n            \"id\": \"441\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Randalpha Microfinance Bank\",\n            \"id\": \"442\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Rayyan MFB\",\n            \"id\": \"443\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Refuge Mortgage Bank\",\n            \"id\": \"444\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Regent Microfinance Bank\",\n            \"id\": \"445\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Rehoboth Microfinance Bank\",\n            \"id\": \"446\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Reliance Microfinance Bank\",\n            \"id\": \"447\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"RenMoney Microfinance Bank\",\n            \"id\": \"448\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Rephidim Microfinance Bank\",\n            \"id\": \"449\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Revelation MFB\",\n            \"id\": \"450\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Richway Microfinance Bank\",\n            \"id\": \"451\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Rigo Microfinance Bank\",\n            \"id\": \"452\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"RIMA Growth Pathway Microfinance Bank\",\n            \"id\": \"453\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Rockshield Microfinance Bank\",\n            \"id\": \"454\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Royal Blue MFB\",\n            \"id\": \"455\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Royal Exchange Microfinance Bank\",\n            \"id\": \"456\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Safe Haven Microfinance Bank\",\n            \"id\": \"458\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"SafeTrust\",\n            \"id\": \"459\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Sagamu Microfinance Bank\",\n            \"id\": \"460\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"SageGrey Finance Limited\",\n            \"id\": \"461\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"SEAP Microfinance Bank\",\n            \"id\": \"462\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Seed Capital Microfinance Bank\",\n            \"id\": \"463\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Seedvest Microfinance Bank\",\n            \"id\": \"464\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Shalom Microfinance Bank\",\n            \"id\": \"465\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Shepherd Trust Microfinance Bank\",\n            \"id\": \"466\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Shield MFB\",\n            \"id\": \"467\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Shongom Microfinance Bank\",\n            \"id\": \"468\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Simple Finance Limited\",\n            \"id\": \"469\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"SmartCash PSB\",\n            \"id\": \"470\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Snow MFB\",\n            \"id\": \"471\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Solid Allianze MFB\",\n            \"id\": \"472\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Solid Rock MFB\",\n            \"id\": \"473\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Source MFB\",\n            \"id\": \"474\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Sparkle\",\n            \"id\": \"475\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Stanbic IBTC @ease wallet\",\n            \"id\": \"476\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Stanford Microfinance Bak\",\n            \"id\": \"477\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Stateside Microfinance Bank\",\n            \"id\": \"478\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"STB Mortgage Bank\",\n            \"id\": \"479\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Stellas MFB\",\n            \"id\": \"480\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Sulspap Microfinance Bank\",\n            \"id\": \"481\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Suntop MFB\",\n            \"id\": \"482\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Supreme MFB\",\n            \"id\": \"483\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"TagPay\",\n            \"id\": \"484\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Taj_Pinspay\",\n            \"id\": \"485\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Tanadi Microfinance Bank\",\n            \"id\": \"486\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Tangale MFB\",\n            \"id\": \"487\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Tasued Microfinance Bank\",\n            \"id\": \"489\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"TCF MFB\",\n            \"id\": \"490\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"TeasyMobile\",\n            \"id\": \"491\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Tekla Finance Limited\",\n            \"id\": \"492\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Think Finance Microfinance Bank\",\n            \"id\": \"493\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"TitanPaystack\",\n            \"id\": \"494\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Total Trust MFB\",\n            \"id\": \"495\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Treasure MFB\",\n            \"id\": \"496\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Trident Microfinance Bank\",\n            \"id\": \"497\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Trinity Financial Services Limited\",\n            \"id\": \"498\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"TripleA Microfinance Bank\",\n            \"id\": \"499\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Trust Microfinance Bank\",\n            \"id\": \"500\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Trustbond Mortgage Bank\",\n            \"id\": \"501\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Trustfund Microfinance Bank\",\n            \"id\": \"502\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"U & C Microfinance Bank\",\n            \"id\": \"503\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"UDA Microfinance Bank\",\n            \"id\": \"504\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Uhuru MFB\",\n            \"id\": \"505\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Ummah  Microfinance Bank\",\n            \"id\": \"506\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Umuchinemere MFB\",\n            \"id\": \"507\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Umuchukwu MFB\",\n            \"id\": \"508\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"UNAAB Microfinance Bank\",\n            \"id\": \"509\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Uniben Microfinance Bank\",\n            \"id\": \"510\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Unical MFB\",\n            \"id\": \"511\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Unifund MFB\",\n            \"id\": \"512\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Unimaid Microfinance Bank\",\n            \"id\": \"514\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"UniUyo Microfinance Bank\",\n            \"id\": \"515\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"UNN MFB\",\n            \"id\": \"516\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Vale Finance Limited\",\n            \"id\": \"518\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Verdant Microfinance Bank\",\n            \"id\": \"519\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Verite Microfinance Bank\",\n            \"id\": \"520\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"VFD MFB\",\n            \"id\": \"521\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Virtue Microfinance Bank\",\n            \"id\": \"522\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Visa Microfinance Bank\",\n            \"id\": \"523\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"VTNetworks\",\n            \"id\": \"524\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Waya Microfinance Bank\",\n            \"id\": \"526\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Wetland Microfinance Bank\",\n            \"id\": \"527\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Xpresswallet\",\n            \"id\": \"528\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Xslnce Microfinance Bank\",\n            \"id\": \"529\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"YCT Microfinance Bank\",\n            \"id\": \"530\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Yes Microfinance Bank\",\n            \"id\": \"531\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Yobe Microfinance Bank\",\n            \"id\": \"532\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Zenith Eazy Wallet\",\n            \"id\": \"533\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"ZenithMobile\",\n            \"id\": \"534\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Zikora Microfinance Bank\",\n            \"id\": \"535\",\n            \"icon\": \"none.svg\"\n        },\n        {\n            \"name\": \"Zinternet Nigera Limited\",\n            \"id\": \"536\",\n            \"icon\": \"none.svg\"\n        }\n    ]\n}"}],"_postman_id":"ac743bc8-98a4-41d0-ba3c-78bebf0cb2e2"}],"id":"fca6be61-2f01-4ee5-9cdf-2ebe22031714","_postman_id":"fca6be61-2f01-4ee5-9cdf-2ebe22031714","description":""},{"name":"Account Discovery","item":[{"name":"Start Consent Session","id":"2242e656-3b29-4072-aee5-24500ac3b5e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customer_id\": \"customer_id\"\n    // \"bvn\": \"bvn\"\n}","options":{"raw":{"language":"json"}}},"url":"/discovery","urlObject":{"path":["discovery"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"31817bb7-05a7-4863-ab50-2c5986e05def","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customer_id\": \"customer_id\",\n    \"bvn\": \"bvn\"\n}","options":{"raw":{"language":"json"}}},"url":"/discovery"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Please chose a 2FA delivery option\",\n    \"data\": {\n        \"options\": [\n            \"OMF****I@GMAIL.COM\",\n            \"0810***6508\"\n        ],\n        \"session_id\": \"session_id\"\n    }\n}"}],"_postman_id":"2242e656-3b29-4072-aee5-24500ac3b5e5"},{"name":"Request Code","id":"5ecaa5e3-8351-4e00-a9e9-9f5179a0ca79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    //\"customer_id\": \"customer_id\",\n    //\"bvn\": \"bvn\",\n    //\"deliver_otp_to\": \"OMF****I@GMAIL.COM\",\n    //\"alternate_phone\": \"0801122212121\",\n    \"contact_option\": \"0816***0725\",\n    \"refresh\": true\n}","options":{"raw":{"language":"json"}}},"url":"/igree/discovery/:session_id","urlObject":{"path":["igree","discovery",":session_id"],"host":[""],"query":[],"variable":[{"type":"any","value":"62548eba-a131-4655-ae67-c8747b2f219f","key":"session_id"}]}},"response":[{"id":"92f55db1-5fc0-493a-9dc6-c2c410aa6908","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"customer_id\": \"customer_id\",\n    \"bvn\": \"bvn\",\n    \"deliver_otp_to\": \"OMF****I@GMAIL.COM\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/discovery/:session_id","host":[""],"path":["discovery",":session_id"],"variable":[{"key":"session_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"A 6 digit code has been sent to OMF****I@GMAIL.COM\",\n    \"data\": {\n        \"session_id\": \"session_id\"\n    }\n}"}],"_postman_id":"5ecaa5e3-8351-4e00-a9e9-9f5179a0ca79"},{"name":"Verify OTP","id":"61f08527-f3ac-46b7-8f7e-9257dfa1e069","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"otp\": \"948484\"\n}","options":{"raw":{"language":"json"}}},"url":"/discovery/:session_id/otp","urlObject":{"path":["discovery",":session_id","otp"],"host":[""],"query":[],"variable":[{"id":"6f549287-8479-4942-bff4-550fab3a6c24","type":"any","value":"","key":"session_id"}]}},"response":[],"_postman_id":"61f08527-f3ac-46b7-8f7e-9257dfa1e069"},{"name":"Self Service","id":"21cee556-95ab-432f-942e-0d84b46728eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"21cee556-95ab-432f-942e-0d84b46728eb"}],"id":"40491572-5eae-4cc2-8adf-733bb313f761","_postman_id":"40491572-5eae-4cc2-8adf-733bb313f761","description":""}],"event":[{"listen":"prerequest","script":{"id":"749549af-d41a-47d1-94c5-c51c9e7d6f91","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"57714529-c918-440c-b140-66313f4b497f","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"liveBaseUrl","value":"https://api.neocollect.ng","type":"string"},{"key":"testBaseUrl","value":"https://api.neocollect.ng/test","type":"string"},{"key":"baseUrl","value":"","type":"string"},{"key":"authToken","value":"","type":"string"},{"key":"authTokenId","value":"","type":"string"},{"key":"authTokenSecret","value":"","type":"string"},{"key":"localtest","value":"","type":"string"}]}