{"info":{"_postman_id":"9d5845ed-8aa4-4bdf-8d77-7583d5a3acf7","name":"AliansPay API Docs","description":"<html><head></head><body><p><a href=\"https://alianspay.com\">AlansPay</a> is a payment methods aggregator that allows businesses and individuals to collect funds online, to accept payments from their websites or mobile app, and to send and receive money. It integrates several payment methods (Orange Money, MTN Mobile Money, Wave, VISA, Mastercard, AliansPay Wallet...) and provides you with an overview of your activites</p>\n<h2>Contact</h2>\n\n<ul><li><p>Author:<a href=\"https://aliansgroup.tech\">Alians Group LLC</a></p></li><li><p>Support: support@aliansgroup.tech</p></li><li><p>Website:<a href=\"https://alianspay.com\">www.alianspay.com</a></p></li><li><p>Phone: +237 656 629 522</p></li></ul>\n\n<h3 id=\"supported-payment-methods\"><strong>Supported payment methods</strong></h3>\n<p>Each territory supports its own set of payment methods. The relevant payment method code should be the value of the moyenPayment property of a collection or disbursement request body.</p>\n<p>Note that WAVE and VISA_MASTERCARD collection operations will include a URL in the response object. That URL will need to be opened in the browser to complete the operation.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th><strong>Cameroon</strong></th>\n<th><strong>Senegal</strong></th>\n<th><strong>Togo</strong></th>\n<th><strong>TCHAD</strong></th>\n<th><strong>Gunée</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Payment method codes</td>\n<td>- OM (Orange Money)  <br>- MOMO (MTN Mobile Money)  <br>- AP (AliansPay)  <br>- VISA_MASTERCARD (Visa/Mastercard)</td>\n<td>- AP (AliansPay)  <br>- OM (Orange Money)  <br>- WAVE (Wave Money)  <br>- VISA_MASTERCARD (Visa/Mastercard)</td>\n<td>- AP (AliansPay)  <br>- VISA_MASTERCARD (Visa/Mastercard)  <br>- TMoney (TOGOCOM)</td>\n<td>- AP (AliansPay)  <br>- VISA_MASTERCARD (Visa/Mastercard)  <br>-MOOV Money</td>\n<td>- MOMO (MTN Mobile Money)  <br>- AP (AliansPay)</td>\n</tr>\n<tr>\n<td>Currency code</td>\n<td>XAF</td>\n<td>XOF</td>\n<td>XOF</td>\n<td>XAF</td>\n<td>GNF</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"all-statuses\"><strong>All statuses</strong></h1>\n<p>SUCCESS : Transaction successfully completed</p>\n<p>PENDING : Transaction in process</p>\n<p>FAILED : Transaction failed due to unknown cause</p>\n<p>PAYEE_NOT_FOUND : The phone number being paid to is invalid.</p>\n<p>COULD_NOT_PERFORM_TRANSACTION : This can be attributed to transaction timeout. This predominantly occurs with a delay to approve a transaction within the given time frame (10 minutes)</p>\n<p>NOT_ENOUGH_FUNDS : The payer does not have enough funds</p>\n<p>PAYER_LIMIT_REACHED : The payer's limit has been breached</p>\n<p>PAYEE_NOT_ALLOWED_TO_RECEIVE : The payee is unable to receive funds</p>\n<p>EXPIRED : The requested resource has expired</p>\n<p>TRANSACTION_CANCELED : The transaction was canceled by the initiator</p>\n<p>APPROVAL_REJECTED : The approval was rejected</p>\n<p>ERROR: Error generated during transaction execution</p>\n<h2 id=\"otp\">OTP</h2>\n<p>In all requests the api must send an OTP</p>\n<p>The OTP must contain six characters and the key must be the otp-secret-code</p>\n<p>To generate the PIN (OTP), you use the following JS libraries:</p>\n<p><strong>Node JS</strong></p>\n<p>StartFragment</p>\n<p><a href=\"https://www.npmjs.com/package/base32-encode\">https://www.npmjs.com/package/base32-encode</a></p>\n<p><a href=\"https://www.npmjs.com/package/otplib\">https://www.npmjs.com/package/otplib</a></p>\n<p>EndFragment</p>\n<p>Here is a piece of code:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">import base32Encode from 'base32-encode';\nimport { authenticator } from 'otplib';\nconst secret = base32Encode(Buffer.from(guid), 'RFC4648', { padding: false });\nconst otp = authenticator.generate(secret);\n\n</code></pre>\n<p><strong>.Net C#</strong></p>\n<p><a href=\"https://github.com/BrandonPotter/GoogleAuthenticator\">GoogleAuthenticator</a></p>\n<p>Here is a piece of code:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-csharp\">using Google.Authenticator;\npublic static string GetCurrentCode(string otp-secret-code)\n{\n    return new TwoFactorAuthenticator().GetCurrentPIN(otp-secret-code);\n}\n\n</code></pre>\n<p><strong>PHP</strong></p>\n<p>Download and unzip the library: <a href=\"https://alianspay.com/wp-content/uploads/2023/09/libs.zip\">libs.zip</a></p>\n<p>Here is a piece of code:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">require_once __DIR__.'/libs/AliansGoogleAuthenticator.php';\n$ga = new AliansGoogleAuthenticator();\n$pin = $ga-&gt;getCode(otp-secret-code);\n\n</code></pre>\n<p><strong>React Native</strong></p>\n<p>npm install @multiotp/genotp</p>\n<p>npm install hi-base32</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">var base32 = require('hi-base32');\nconst OTP = require('@multiotp/genotp')\nconst otp = new OTP();\nconst getCodeByGUID=(guid: string)=&gt;{\nconst code = (base32.encode(guid) as string).split('=').join('');\n return otp.generate({\n                    type: 'totp',\n                    period: 30,\n                    seedtype: 'base32',\n                    digits: 6,\n                    algorithm: 'sha1',\n                    secret: code\n                });\n}\n\n</code></pre>\n<p><strong>Note</strong></p>\n<p>For all collection and disbursement transactions, a callback request is sent in a url string that you pass to us in the \"callbackUrl\" variable</p>\n<p>If you do not want to receive this request do not send anything in this parameter</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Type</strong></th>\n<th>Sample response</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>guid</td>\n<td>string</td>\n<td>cd8fb6d0-051d-4187-9d32-481ff4c0bfab</td>\n</tr>\n<tr>\n<td>externalTransactionId</td>\n<td>string</td>\n<td>MP210708723ACC512EAD3145917E</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>SUCCESSFUL</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>Cette opération a été effectuée avec succès !</td>\n</tr>\n<tr>\n<td>reference</td>\n<td>string</td>\n<td>237696985698</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>string</td>\n<td>AP</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Collection success</td>\n</tr>\n<tr>\n<td>transaction</td>\n<td>string</td>\n<td>COLLECTION</td>\n</tr>\n<tr>\n<td>partner</td>\n<td>string</td>\n<td>1win</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>integer</td>\n<td>1500</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"All statuses","slug":"all-statuses"}],"owner":"16377844","collectionId":"9d5845ed-8aa4-4bdf-8d77-7583d5a3acf7","publishedId":"UUy1dmAR","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-09-29T09:07:35.000Z"},"item":[{"name":"Deposit","item":[{"name":"Collection","id":"243ad301-501f-4485-b81d-f03379a7e459","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p><a href=\"https://swagger.io/docs/specification/authentication/bearer-authentication/\">Bearer authentication field</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"MOOV\",\r\n   \"guid\": \"21bdb7-503a-403f-9499-Of35d\",\r\n   \"reference\": \"23590314370\",\r\n   \"montant\": \"1000\",\r\n   \"reason\": \"Paiement of electricity bills\",\r\n   \"pin\": \"940358\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/CollectionCallback\",\r\n   \"succeedUrl\": \"http://myapp.com/alianspay/CollectionSucceed\",\r\n   \"failedUrl\": \"http://myapp.com/alianspay/CollectionFailed\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/encaissement","description":"<p>This operation lets you request a payment from a consumer (Payer) via MTN Mobile Money, Orange Money, VISA or other supported wallet services. The payer will be prompted to authorise the payment. The payment request will bear the PENDING status until such a time it is authorised or rejected by the payer, or until the delay for its execution expires.</p>\n<p>For VISA_MASTERCARD and WAVE payments, a URL to the relevant vendor web page will be included in the response.</p>\n<h2>Body description</h2>\n\n<table><tbody><tr><th>Key</th><th>Type</th><th>Required</th><th>Example</th><th>Description</th></tr><tr><td>moyenPaiement</td><td>string</td><td>YES</td><td>WAVE</td><td>The payment method to use (VISA_MASTERCARD, MOMO,OM, WAVE...)</td></tr><tr><td>guid</td><td>string</td><td>YES</td><td>21d6da15-1b7e-48b6-bbc1-8d91c5b26b60</td><td>Transaction's unique identifier</td></tr><tr><td>reference</td><td>string</td><td>YES</td><td>221895874897</td><td>Payer's phone number (or user's email address for VISA_MASTERCARD payments)</td></tr><tr><td>merchandOtp</td><td>string</td><td>NO</td><td>856845</td><td>Only for OM Senegal</td></tr><tr><td>montant</td><td>number</td><td>YES</td><td>100</td><td>Amount to collect</td></tr><tr><td>reason</td><td>string</td><td>YES</td><td>ras</td><td>Reason for the transaction</td></tr><tr><td>pin</td><td>number</td><td>YES</td><td>786985</td><td>Transaction secret code<br /><br />Use Otp-Secret to generate the topt from the Google-authentificator library<br /><a href=\"https://github.com/topics/google-authenticator\">https://github.com/topics/google-authenticator</a></td></tr><tr><td>callback</td><td>string</td><td>NO</td><td><a href=\"https://unified.com/collection/callback\">https://unified.com/collection/callback</a></td><td>Callback URL</td></tr><tr><td>succeedUrl</td><td>string</td><td>NO</td><td><a href=\"null\">https://unified.com/collection/succeedUrl</a></td><td>SucceedUrl</td></tr><tr><td>failedUrl</td><td>string</td><td>NO</td><td><a href=\"null\">https://unified.com/collection/failedUrl</a></td><td>FailedUrl</td></tr><tr><td>firstName</td><td>string</td><td>NO</td><td>Albert</td><td>Required if the chosen payment method is VISA_MASTERCARD. This must match the first name of the card holder</td></tr><tr><td>lastName</td><td>string</td><td>NO</td><td>Einstein</td><td>Required if the chosen payment method is VISA_MASTERCARD. This must match the last name of the card holder</td></tr><tr><td>phoneNumber</td><td>string</td><td>NO</td><td>22178968569</td><td>Required if the chosen payment method is VISA_MASTERCARD. Payer's phone number.</td></tr></tbody></table>","urlObject":{"path":["encaissement"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[],"variable":[]}},"response":[{"id":"7d37869d-47a4-4a54-8cbf-ce4a026819e6","name":"MOMO Cameroon Success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"MOMO\",\r\n   \"guid\": \"211bbdb7-503a-403f-9499-24118f0f305d\",\r\n   \"reference\": \"237653820185\",\r\n   \"montant\": \"2\",\r\n   \"reason\": \"Paiement of electricity bills\",\r\n   \"pin\": \"940358\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/CollectionCallback\",\r\n   \"succeedUrl\": \"http://myapp.com/alianspay/CollectionSucceed\",\r\n   \"failedUrl\": \"http://myapp.com/alianspay/CollectionFailed\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/encaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 15 Dec 2022 11:10:29 GMT"},{"key":"Content-Length","value":"255"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action effectuée avec succès. Bien vouloir valider la transaction en entrant *126#!\",\n    \"statusMessage\": \"PENDING\",\n    \"redirectUrl\": null,\n    \"object\": \"Action effectuée avec succès. Bien vouloir valider la transaction en entrant *126#!\"\n}"},{"id":"4f84e866-0bab-4b37-a475-68fb86b0b2a4","name":"OM Cameroon Success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"OM\",\r\n   \"guid\": \"79bd6bdd-0897-4d07-a7f6-8544048a2cbb\",\r\n   \"reference\": \"237659163608\",\r\n   \"montant\": \"2\",\r\n   \"reason\": \"Paiement of electricity bills\",\r\n   \"pin\": \"940358\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/CollectionCallback\",\r\n   \"succeedUrl\": \"\",\r\n   \"failedUrl\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/encaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"261"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 19 Dec 2022 09:48:12 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action effectuée avec succès. Bien vouloir valider la transaction en entrant #150*50#!\",\n    \"statusMessage\": \"PENDING\",\n    \"redirectUrl\": null,\n    \"object\": \"Action effectuée avec succès. Bien vouloir valider la transaction en entrant #150*50#!\"\n}"},{"id":"99dde2d9-e6d5-4016-9655-44ede3b35df6","name":"OM Senegal Success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"OM\",\r\n   \"guid\": \"52321a65-9e58-4ba1-bbdd-5df2c177d290\",\r\n   \"reference\": \"221774387447\",\r\n   \"merchandOtp\": \"408631\",\r\n   \"montant\": \"2\",\r\n   \"reason\": \"Paiement of electricity bills\",\r\n   \"pin\": \"940358\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/CollectionCallback\",\r\n   \"succeedUrl\": \"http://myapp.com/alianspay/CollectionSucceed\",\r\n   \"failedUrl\": \"http://myapp.com/alianspay/CollectionFailed\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/encaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"147"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 19 Dec 2022 09:35:35 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action effectuée avec succès.\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": \"Action effectuée avec succès.\"\n}"},{"id":"f06236c5-680f-4850-820c-2db652efcd46","name":"VISA MASTERCARD Success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"VISA_MASTERCARD\",\r\n   \"guid\": \"211bbdb7-503a-403f-9499-24118f0f305d\",\r\n   \"reference\": \"dcmbassi@gmail.com\",\r\n   \"firstName\": \"Dave\",\r\n   \"lastName\": \"Mbassi\",\r\n   \"phoneNumber\": \"22178968569\",\r\n   \"montant\": \"2\",\r\n   \"reason\": \"Paiement of electricity bills\",\r\n   \"pin\": \"940358\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/CollectionCallback\",\r\n   \"succeedUrl\": \"http://myapp.com/alianspay/CollectionSucceed\",\r\n   \"failedUrl\": \"http://myapp.com/alianspay/CollectionFailed\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/encaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"311"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 15 Dec 2022 12:24:23 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"https://test-alianspay.aliansfi.com/api/Encaissement/checkout-page?requestId=46d4227d-b858-4e69-a218-64dd2283adb7\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": \"https://test-alianspay.aliansfi.com/api/Encaissement/checkout-page?requestId=46d4227d-b858-4e69-a218-64dd2283adb7\"\n}"},{"id":"5de7efc7-c136-4155-91a3-48696c0ee00b","name":"WAVE Success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"WAVE\",\r\n   \"guid\": \"ed870739-4f29-461c-acdc-b3bb9ddd0b50\",\r\n   \"reference\": \"221774387447\",\r\n   \"montant\": \"2\",\r\n   \"reason\": \"Paiement of electricity bills\",\r\n   \"pin\": \"940358\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/CollectionCallback\",\r\n   \"succeedUrl\": \"\",\r\n   \"failedUrl\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/encaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"215"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 19 Dec 2022 09:43:11 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"https://pay.wave.com/c/cos-1bt9ragag128m?a=2&c=XOF&m=Alians%20Pay\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": \"https://pay.wave.com/c/cos-1bt9ragag128m?a=2&c=XOF&m=Alians%20Pay\"\n}"},{"id":"4d130857-9e4f-474a-9e64-017daa2c2685","name":"Error","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"OM\",\r\n   \"guid\": \"211bbdb7-503a-403f-9499-24118f0f305d\",\r\n   \"reference\": \"237656629522\",\r\n   \"montant\": \"2\",\r\n   \"reason\": \"Paiement of electricity bills\",\r\n   \"pin\": \"940358\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/CollectionCallback\",\r\n   \"succeedUrl\": \"http://myapp.com/alianspay/CollectionSucceed\",\r\n   \"failedUrl\": \"http://myapp.com/alianspay/CollectionFailed\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/encaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"144"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 15 Dec 2022 11:06:19 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"Le solde de votre compte Orange Money est insuffisant. Merci\",\n    \"statusMessage\": \"ERROR\",\n    \"redirectUrl\": null,\n    \"object\": \"\"\n}"},{"id":"2cd4f7d5-5f36-4d82-9d8e-94b6619e289e","name":"AP Success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"AP\",  //required\r\n   \"guid\": \"21db7-503a-403f-9499-2315d-7845l-pojui\", //required\r\n   \"reference\": \"237656629522\",  // optional\r\n   \"montant\": \"2\", //required\r\n   \"reason\": \"Paiement of electricity bills\", //optional\r\n   \"pin\": \"940358\", //required\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/CollectionCallback\", //optional\r\n   \"succeedUrl\": \"http://myapp.com/alianspay/CollectionSucceed\", //required\r\n   \"failedUrl\": \"http://myapp.com/alianspay/CollectionFailed\" //required\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/encaissement"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"fdb321f0-edf3-470f-98fb-c9397d34158b","name":"TMoney TOGO success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"TMoney\",\r\n   \"guid\": \"211bbdb7-503a-403f-9499-2f305d\",\r\n   \"reference\": \"22870798502\",\r\n   \"montant\": \"2\",\r\n   \"reason\": \"Paiement of electricity bills\",\r\n   \"pin\": \"940358\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/CollectionCallback\",\r\n   \"succeedUrl\": \"http://myapp.com/alianspay/CollectionSucceed\",\r\n   \"failedUrl\": \"http://myapp.com/alianspay/CollectionFailed\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/encaissement"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"243ad301-501f-4485-b81d-f03379a7e459"},{"name":"Collection Status","id":"b0c9f441-535a-4bec-a843-4a8ca135d02d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p><a href=\"https://swagger.io/docs/specification/authentication/bearer-authentication/\">Bearer authentication field</a></p>\n","type":"text"}],"url":"http://localhost:5004/encaissement/check-status?guid=3b49ae63-5556-4261-b79f-dc57eb67cf75","description":"<p>Use this to check the status of a given collection operation (identified by its guid. The value returned in the object field will be PENDING, SUCCESSFUL or CANCELED.</p>\n","urlObject":{"path":["encaissement","check-status"],"host":["http://localhost:5004"],"query":[{"key":"guid","value":"3b49ae63-5556-4261-b79f-dc57eb67cf75"}],"variable":[]}},"response":[{"id":"dff36847-f9f7-4f3a-9e3e-af0757882fa0","name":"Success","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"url":{"raw":"https://test-alianspay.aliansfi.com/api/encaissement/check-status?guid=c17b11db-6b1a-4c85-bad2-1f8fbcdc4f8d","host":["https://test-alianspay.aliansfi.com/api"],"path":["encaissement","check-status"],"query":[{"key":"guid","value":"c17b11db-6b1a-4c85-bad2-1f8fbcdc4f8d"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action effectuée avec succès\",\n    \"statusMessage\": \"SUCCESS\",\n    \"obseleteVersion\": false,\n    \"object\": \"SUCCESSFUL\"\n}"},{"id":"f9c07249-23b6-4f5a-8a88-8e9b7edf5927","name":"Canceled","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"url":{"raw":"https://test-alianspay.aliansfi.com/api/encaissement/check-status?guid={{guid}}","host":["https://test-alianspay.aliansfi.com/api"],"path":["encaissement","check-status"],"query":[{"key":"guid","value":"{{guid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 15 Dec 2022 11:18:29 GMT"},{"key":"Content-Length","value":"128"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Cette opération a été annulée !\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": \"CANCELED\"\n}"},{"id":"afed4ec9-e184-40c9-be63-75febd901c18","name":"Pending","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"url":{"raw":"https://test-alianspay.aliansfi.com/api/encaissement/check-status?guid={{guid}}","host":["https://test-alianspay.aliansfi.com/api"],"path":["encaissement","check-status"],"query":[{"key":"guid","value":"{{guid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"123"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 15 Dec 2022 11:21:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Cette opération est en cours !\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": \"PENDING\"\n}"}],"_postman_id":"b0c9f441-535a-4bec-a843-4a8ca135d02d"}],"id":"171dc483-c257-4de0-a787-d166807ba574","_postman_id":"171dc483-c257-4de0-a787-d166807ba574","description":""},{"name":"Bill Payment CMR","item":[{"name":"Eneo","item":[{"name":"Bills list","id":"b38ee3a3-95de-4b6f-9326-f37fb7073cfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://test-alianspay.aliansfi.com/api/BillPayment/bills?transaction=PAIEMENT_FACTURE_ENEO&serviceNumber=200770620","urlObject":{"path":["BillPayment","bills"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[{"key":"transaction","value":"PAIEMENT_FACTURE_ENEO"},{"description":{"content":"<p>201954801\n200770620\n201300057\n201180029\n201753394\n203076844</p>\n","type":"text/plain"},"key":"serviceNumber","value":"200770620"}],"variable":[]}},"response":[],"_postman_id":"b38ee3a3-95de-4b6f-9326-f37fb7073cfc"},{"name":"Bills Pay","id":"2ef67173-f166-4173-9d98-3c4c69c5e27c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}],"advancedConfig":[{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"x-Source","value":"{{source}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"guid\": \"0e2bb1d029ec497db794399a84f2539e\",\r\n    \"pin\": 123456,\r\n    \"billId\": \"S-112-950-ENEO-10039-CAMWATER200770620-0e2bb1d029ec497db794399a84f2539e\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/BillPayment/pay","urlObject":{"path":["BillPayment","pay"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ef67173-f166-4173-9d98-3c4c69c5e27c"}],"id":"8ae1d489-0d78-4d3b-bd7a-a3f483200e04","_postman_id":"8ae1d489-0d78-4d3b-bd7a-a3f483200e04","description":""},{"name":"CamWater","item":[{"name":"Bills list","id":"d6505e2c-f33b-4a78-9ab6-63287dfb7222","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}],"advancedConfig":[{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"x-Source","value":"{{source}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test-alianspay.aliansfi.com/api/BillPayment/bills?transaction=PAIEMENT_FACTURE_CAMWATER&serviceNumber=030566280350101","urlObject":{"path":["BillPayment","bills"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[{"key":"transaction","value":"PAIEMENT_FACTURE_CAMWATER"},{"description":{"content":"<p>010178181220101\n010183040970101\n010178010020202\n030566280350101\n010126120290301\n010118010690101\n010324370130305\n030233060490101</p>\n","type":"text/plain"},"key":"serviceNumber","value":"030566280350101"}],"variable":[]}},"response":[],"_postman_id":"d6505e2c-f33b-4a78-9ab6-63287dfb7222"},{"name":"Bills Pay","id":"21f9db99-1986-436b-ad5c-2df27a0c6cdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}],"advancedConfig":[{"key":"password","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"x-Source","value":"{{source}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"guid\": \"9351102a25fb445e81f2fa91eb9f9287\",\r\n    \"pin\": 123456,\r\n    \"billId\": \"S-112-950-CAMWATER-90007-CAMWATER030566280350101-9351102a25fb445e81f2fa91eb9f9287\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/BillPayment/pay","urlObject":{"path":["BillPayment","pay"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"21f9db99-1986-436b-ad5c-2df27a0c6cdc"}],"id":"4d7c02ef-4961-4cf6-82b0-bc0f6ba500c8","_postman_id":"4d7c02ef-4961-4cf6-82b0-bc0f6ba500c8","description":""},{"name":"Airtime","item":[{"name":"Bills list","id":"b9973cd2-2c91-4125-be86-eff185773b35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://test-alianspay.aliansfi.com/api/BillPayment/bills?transaction=PAIEMENT_CREDIT_COMMUNICATION","urlObject":{"path":["BillPayment","bills"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[{"key":"transaction","value":"PAIEMENT_CREDIT_COMMUNICATION"}],"variable":[]}},"response":[],"_postman_id":"b9973cd2-2c91-4125-be86-eff185773b35"},{"name":"Bills Pay","id":"99dc56e8-7de7-4999-8d88-9ccd5829ab00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"amount\": 100,\r\n    \"billNumber\": \"237620031530\",\r\n    \"name\": \"CMCamtel\",\r\n    \"transaction\": \"PAIEMENT_CREDIT_COMMUNICATION\",\r\n    \"billId\": \"557e08b7-62bb-4f0b-b687-b1d46b0a7570\",\r\n    \"guid\": \"0e2bb1d029ec497db794399a84f2539a\",\r\n    \"pin\": 123456\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/BillPayment/pay","urlObject":{"path":["BillPayment","pay"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"99dc56e8-7de7-4999-8d88-9ccd5829ab00"}],"id":"a59ded38-608b-41af-b0a5-c6523eb75850","_postman_id":"a59ded38-608b-41af-b0a5-c6523eb75850","description":""},{"name":"Canal Plus","item":[{"name":"Subscriber","id":"ea02f01a-5436-4d08-b5d0-8d9c05ec7bf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"phoneNumber\": \"00237697219754\",\r\n    \"email\": \"\",\r\n    \"transaction\": \"PAIEMENT_FACTURE_CANAL_PLUS\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5004/BillPayment/subscriber","urlObject":{"path":["BillPayment","subscriber"],"host":["http://localhost:5004"],"query":[],"variable":[]}},"response":[],"_postman_id":"ea02f01a-5436-4d08-b5d0-8d9c05ec7bf6"},{"name":"Bills list","id":"2608774d-2d67-4802-8150-155307f49d6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://localhost:5004/BillPayment/bills?serviceNumber=24210047218908&transaction=PAIEMENT_FACTURE_CANAL_PLUS&isUpgrade=true","urlObject":{"path":["BillPayment","bills"],"host":["http://localhost:5004"],"query":[{"description":{"content":"<p>24100126848690</p>\n","type":"text/plain"},"key":"serviceNumber","value":"24210047218908"},{"key":"transaction","value":"PAIEMENT_FACTURE_CANAL_PLUS"},{"key":"isUpgrade","value":"true"}],"variable":[]}},"response":[],"_postman_id":"2608774d-2d67-4802-8150-155307f49d6c"},{"name":"Bills Pay upgrade","id":"31ca76d8-0f9b-4464-88e9-00705d3606c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"billId\": \"fb4af33e-5f4b-4202-bccb-611a8dce4c8f\",\r\n    \"options\": [\"CHR\",\"ENGLBADD\"],\r\n    \"startDate\": \"06-27-2024\",\r\n    \"guid\": \"0e2bb1d029ec497db94399abb8f2539a\",\r\n    \"pin\": 123456\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5004/BillPayment/pay","urlObject":{"path":["BillPayment","pay"],"host":["http://localhost:5004"],"query":[],"variable":[]}},"response":[],"_postman_id":"31ca76d8-0f9b-4464-88e9-00705d3606c7"},{"name":"Bills Pay renewal","id":"2f0a5774-956b-4041-81e7-5a107b43f771","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"billId\": \"557e08b7-62bb-4f0b-b687-b1d46b0a7570\",\r\n    \"options\": [\"\",\"\",\"\"],\r\n    \"timePeriod\": \"3\",\r\n    \"guid\": \"0e2bb1d029ec497db794399a84f2539a\",\r\n    \"pin\": 123456\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/BillPayment/pay","urlObject":{"path":["BillPayment","pay"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f0a5774-956b-4041-81e7-5a107b43f771"}],"id":"47ecae98-844c-49b2-8d0f-da402bf00183","_postman_id":"47ecae98-844c-49b2-8d0f-da402bf00183","description":""},{"name":"Bundle Data","item":[{"name":"Bills list","id":"dc12fe06-5968-45df-8b7f-c1d12aed4247","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://test-alianspay.aliansfi.com/api/BillPayment/bills?transaction=PAIEMENT_INTERNET_BUNDLE","urlObject":{"path":["BillPayment","bills"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[{"key":"transaction","value":"PAIEMENT_INTERNET_BUNDLE"}],"variable":[]}},"response":[],"_postman_id":"dc12fe06-5968-45df-8b7f-c1d12aed4247"},{"name":"Bills Pay","id":"5ea671d3-d4c3-4324-90db-1666c4e804eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"amount\": 100,\r\n    \"phoneNumber\": \"237620031530\",\r\n    \"billId\": \"68a8662f-c1a9-4188-a2e2-059046281ef0\",\r\n    \"guid\": \"0e2bb1d029ec497db794399a84f2539\",\r\n    \"pin\": 123456\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/BillPayment/pay","urlObject":{"path":["BillPayment","pay"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ea671d3-d4c3-4324-90db-1666c4e804eb"}],"id":"24a21844-fdec-44f9-9033-0fb76aa00785","_postman_id":"24a21844-fdec-44f9-9033-0fb76aa00785","description":""},{"name":"Bill payment status","id":"c2b3ba4d-fdba-4c8a-9bf7-690150143000","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p><a href=\"https://swagger.io/docs/specification/authentication/bearer-authentication/\">Bearer authentication field</a></p>\n","type":"text"}],"url":"https://test-alianspay.aliansfi.com/api/BillPayment/check-status?guid=0e2bb1d029ec497db794399a84f2539","description":"<p>Use this to check the status of a given collection operation (identified by its guid. The value returned in the object field will be PENDING, SUCCESSFUL or CANCELED.</p>\n","urlObject":{"path":["BillPayment","check-status"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[{"key":"guid","value":"0e2bb1d029ec497db794399a84f2539"}],"variable":[]}},"response":[{"id":"99c21324-fde7-438e-ac7a-815bbb94fd26","name":"Success","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"url":{"raw":"https://test-alianspay.aliansfi.com/api/encaissement/check-status?guid=c17b11db-6b1a-4c85-bad2-1f8fbcdc4f8d","host":["https://test-alianspay.aliansfi.com/api"],"path":["encaissement","check-status"],"query":[{"key":"guid","value":"c17b11db-6b1a-4c85-bad2-1f8fbcdc4f8d"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action effectuée avec succès\",\n    \"statusMessage\": \"SUCCESS\",\n    \"obseleteVersion\": false,\n    \"object\": \"SUCCESSFUL\"\n}"},{"id":"7892efd8-7670-4774-ad02-84b03804246e","name":"Canceled","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"url":{"raw":"https://test-alianspay.aliansfi.com/api/encaissement/check-status?guid={{guid}}","host":["https://test-alianspay.aliansfi.com/api"],"path":["encaissement","check-status"],"query":[{"key":"guid","value":"{{guid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 15 Dec 2022 11:18:29 GMT"},{"key":"Content-Length","value":"128"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Cette opération a été annulée !\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": \"CANCELED\"\n}"},{"id":"311e719d-6506-4e8f-af19-cc67a25ba00c","name":"Pending","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"url":{"raw":"https://test-alianspay.aliansfi.com/api/encaissement/check-status?guid={{guid}}","host":["https://test-alianspay.aliansfi.com/api"],"path":["encaissement","check-status"],"query":[{"key":"guid","value":"{{guid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"123"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 15 Dec 2022 11:21:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Cette opération est en cours !\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": \"PENDING\"\n}"}],"_postman_id":"c2b3ba4d-fdba-4c8a-9bf7-690150143000"}],"id":"afe4b67d-a2cd-4b16-a460-0adaaf163621","_postman_id":"afe4b67d-a2cd-4b16-a460-0adaaf163621","description":""},{"name":"Withdrawal","item":[{"name":"Disbursement","id":"258bcafd-8b92-419f-b5cc-771c0ba96df4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p><a href=\"https://swagger.io/docs/specification/authentication/bearer-authentication/\">Bearer authentication field</a></p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"OM\",\r\n   \"guid\": \"0049e6f5-e812-4c2e-99b7-dc7cafc\",\r\n   \"reference\": \"237656629522\",\r\n   \"montant\": \"10\",\r\n   \"reason\": \"Salary o\",\r\n   \"pin\": \"123456\",\r\n   \"callbackUrl\": \"https://test-alianspay.aliansfi.com/api/Tools/callback\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/decaissement","description":"<p>This operation lets you initiate a payment to a consumer (Beneficiary) via MTN Mobile Money, Orange Money, VISA or other supported wallet services. The disbursement request will bear the PENDING status until the payment processor either succeeds or fails in carrying out the transaction.</p>\n","urlObject":{"path":["decaissement"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[],"variable":[]}},"response":[{"id":"71f43958-5d22-4286-8579-b72c3a31cdfe","name":"MOMO Cameroon Success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"MOMO\",\r\n   \"guid\": \"d4716d32-38d4-4348-ac8d-bd0080ead432\",\r\n   \"reference\": \"237653820185\",\r\n   \"montant\": \"100\",\r\n   \"reason\": \"Salary of september\",\r\n   \"pin\": \"123456\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/DisbursementCallback\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/decaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 19 Dec 2022 10:10:34 GMT"},{"key":"Content-Length","value":"117"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action effectuée avec succès\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": true\n}"},{"id":"cc0638c8-40f9-4f86-a744-935a666070dd","name":"OM Cameroon Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"OM\",\r\n   \"guid\": \"0049e-6f5-e812-4c2e-99b7-dc7cafc\",\r\n   \"reference\": \"237656629522\",\r\n   \"montant\": \"10\",\r\n   \"reason\": \"Salary o\",\r\n   \"pin\": \"123456\",\r\n   \"callbackUrl\": \"https://test-alianspay.aliansfi.com/api/Tools/callback\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/decaissement"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"content-length","value":"129"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"strict-transport-security","value":"max-age=2592000"},{"key":"date","value":"Thu, 02 Apr 2026 09:04:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action successfully completed\",\n    \"statusMessage\": \"SUCCESSFUL\",\n    \"redirectUrl\": null,\n    \"object\": true,\n    \"total\": 0\n}"},{"id":"98316ebe-37b1-41e1-a28e-152575bef2aa","name":"OM Senegal Success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"OM\",\r\n   \"guid\": \"e5e228d1-36f8-49a8-a4fc-8360e3e20837\",\r\n   \"reference\": \"221774387447\",\r\n   \"montant\": \"100\",\r\n   \"reason\": \"Salary of september\",\r\n   \"pin\": \"123456\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/DisbursementCallback\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/decaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"117"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 19 Dec 2022 10:23:10 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action effectuée avec succès\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": true\n}"},{"id":"66a2669e-c2d5-4965-9b75-37ce45b4cf6a","name":"WAVE Success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"WAVE\",\r\n   \"guid\": \"dec1ae1c-50e4-40a5-98e1-601c1ae600b2\",\r\n   \"reference\": \"221774387447\",\r\n   \"montant\": \"100\",\r\n   \"reason\": \"Salary of september\",\r\n   \"pin\": \"123456\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/DisbursementCallback\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/decaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"117"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 19 Dec 2022 10:25:17 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action effectuée avec succès\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": true\n}"},{"id":"da6929c6-bc0b-4957-bf36-94cd1f4cd735","name":"AP Success","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"AP\",\r\n   \"guid\": \"ded35dc9-475e-47ba-82bd-7e03eee538b5\",\r\n   \"reference\": \"237653820185\",\r\n   \"montant\": \"1000\",\r\n   \"reason\": \"Salary\",\r\n   \"pin\": \"123456\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/DisbursementCallback\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/decaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"116"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Mar 2023 12:07:56 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action successfully completed\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": true\n}"},{"id":"629c7633-da6a-438a-8ee5-fb34f28c8d29","name":"Error","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"moyenPaiement\": \"OM\",\r\n   \"guid\": \"21d6da15-1b7e-48b6-bbc1-8d91c5b26b60\",\r\n   \"reference\": \"237694655369\",\r\n   \"montant\": \"100\",\r\n   \"reason\": \"Salary of september\",\r\n   \"pin\": \"123456\",\r\n   \"callbackUrl\": \"http://myapp.com/alianspay/DisbursementCallback\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/decaissement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"106"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 14 Dec 2022 14:29:41 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"Code PIN incorrect !\",\n    \"statusMessage\": \"INFO\",\n    \"redirectUrl\": null,\n    \"object\": false\n}"}],"_postman_id":"258bcafd-8b92-419f-b5cc-771c0ba96df4"},{"name":"Disbursement Status","id":"bcf210f8-f317-482c-8fc1-79123b5fdaef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p><a href=\"https://swagger.io/docs/specification/authentication/bearer-authentication/\">Bearer authentication field</a></p>\n","type":"text"}],"url":"https://test-alianspay.aliansfi.com/api/decaissement/check-status?guid=0173568f-e29b-4228-ba57-37b73beaddaa","description":"<p>StartFragment</p>\n<p>Use this to check the status of a given disbursement operation (identified by its guid. The value returned will be PENDING, SUCCESS or ERROR.</p>\n<p>EndFragment</p>\n","urlObject":{"path":["decaissement","check-status"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[{"key":"guid","value":"0173568f-e29b-4228-ba57-37b73beaddaa"}],"variable":[]}},"response":[{"id":"60629616-300b-40a3-bfdd-fd2b8606281f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"url":{"raw":"https://test-alianspay.aliansfi.com/api/decaissement/check-status?guid=0173568f-e29b-4228-ba57-37b73beadda","host":["https://test-alianspay.aliansfi.com/api"],"path":["decaissement","check-status"],"query":[{"key":"guid","value":"0173568f-e29b-4228-ba57-37b73beadda"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"145"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 15 Dec 2022 12:54:18 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Cette opération a été effectuée avec succès !\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": \"SUCCESSFUL\"\n}"},{"id":"6a6e6967-6741-4ced-97a4-c7e175760650","name":"Error","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"url":{"raw":"https://test-alianspay.aliansfi.com/api/decaissement/check-status?guid=21d6da15-1b7e-48b6-bbc1-8d91c5b26b60","host":["https://test-alianspay.aliansfi.com/api"],"path":["decaissement","check-status"],"query":[{"key":"guid","value":"21d6da15-1b7e-48b6-bbc1-8d91c5b26b60"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 19 Dec 2022 11:06:11 GMT"},{"key":"Content-Length","value":"123"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"Cette opération n'existe pas !\",\n    \"statusMessage\": \"INFO\",\n    \"redirectUrl\": null,\n    \"object\": \"NOT_FOUND\"\n}"}],"_postman_id":"bcf210f8-f317-482c-8fc1-79123b5fdaef"}],"id":"b0345b24-da63-4779-ab0d-cc59e714be69","_postman_id":"b0345b24-da63-4779-ab0d-cc59e714be69","description":""},{"name":"Remittance","item":[{"name":"Remittance","id":"faaca9e8-c2f6-48a3-881a-324eb0023b41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p><a href=\"https://swagger.io/docs/specification/authentication/bearer-authentication/\">Bearer authentication field</a></p>\n"}],"body":{"mode":"raw","raw":"{\r\n    \"Amount\":3000,\r\n    \"PaymentCountry\":\"CMR\",\r\n    \"SendingCountry\":\"CMR\",\r\n    \"DestinationPatnerCode\":\"OM\",\r\n    \"DestinationAccountNumber\":\"237656629522\",\r\n    \"ExternalReferenceId\":\"f91454a-8893-4d34-b15f-cb13d6-pokl8785\",\r\n    \"CallbackUrl\":\"https://test-transfert.aliansfi.com/api/Envoie/callback-remittance\",\r\n    \"Network\":\"GIMAC\",\r\n    \"Sender\":\r\n    {\r\n        \"FirstName\":\"SAGNEU KAMLA AUGUSTIN\",\r\n        \"LastName\":\"\",\r\n        \"Phone\":\"237656629522\",\r\n        \"IdNumber\":\"EEEEE\",\r\n        \"IdType\":\"CNI\",\r\n        \"Birthdate\":\"2024-02-12T09:57:18.0789397+01:00\",\r\n        \"Address\":\"EEEEEE\",\r\n        \"emailAddress\":\"test@gmail.com\"\r\n    },\r\n    \"Recever\":\r\n    {\r\n        \"FirstName\":\"TEST BENE\",\r\n        \"LastName\":\"\",\r\n        \"Phone\":\"237679692288\",\r\n        \"IdNumber\":\"EEEEE\",\r\n        \"IdType\":\"CNI\",\r\n        \"Birthdate\":\"2024-02-12T09:57:18.0791462+01:00\",\r\n        \"Address\":\"ERFDERT\",\r\n        \"emailAddress\":\"test@gmail.com\"\r\n    },\r\n    \"Pin\":\"147285\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5004/remittance","description":"<p>This operation lets you initiate a payment to a consumer (Beneficiary) via MTN Mobile Money, Orange Money, VISA or other supported wallet services. The disbursement request will bear the PENDING status until the payment processor either succeeds or fails in carrying out the transaction.</p>\n","urlObject":{"path":["remittance"],"host":["http://localhost:5004"],"query":[],"variable":[]}},"response":[{"id":"ba9db93c-5b74-4887-b4ac-7bace79c61b6","name":"Remittance Sucess","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"externalReferenceId\":\"215836125948\",  //AN[12] M Unique identifier of the transaction, generated by\r\n    \"amount\":3000,\r\n    \"paymentCountry\":\"CMR\",  // Code ison 3\r\n    \"sendingCountry\": \"CMR\", // code Iso 3\r\n    \"destinationPatnerCode\":\"OM\",\r\n    \"destinationAccountNumber\":\"+23769994794\",\r\n    \"pin\": \"123456\",\r\n    \"callbackUrl\": \"testCallbackUrl.com\",\r\n    \"sender\":\r\n    {\r\n        \"firstName\":\"Hassan\",\r\n        \"lastName\":\"Youssouf\",\r\n        \"idtype\":\"nationalid\",\r\n        \"phone\":\"+237679692288\",\r\n        \"birthdate\": \"2023-09-01T14:41:55.51\",\r\n        \"idnumber\":\"XC145278\"\r\n    },\r\n    \"recever\":\r\n    {\r\n        \"firstname\":\"Ali\",\r\n        \"lastName\":\"BAGHO\",\r\n        \"idtype\":\"passport\",\r\n        \"phone\":\"+237679692288\",\r\n        \"idnumber\":\"XC145278\",\r\n        \"birthdate\": \"2023-09-01T14:41:55.51\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/remittance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"116"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 27 Sep 2023 17:05:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Action éfectuée avec sucess !\",\n    \"statusMessage\": \"PENDING\",\n    \"redirectUrl\": null,\n    \"object\": \"\"\n}"},{"id":"4524fc24-d120-40fe-bcc9-dc4f8a762ad6","name":"Remittance Error","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"externalReferenceId\":\"945215625944\",  //AN[12] M Unique identifier of the transaction, generated by\r\n    \"amount\":5000,\r\n    \"paymentCountry\":\"CMR\",  // Code ison 3\r\n    \"sendingCountry\": \"CMR\", // code Iso 3\r\n    \"destinationPatnerCode\":\"OM\",\r\n    \"destinationAccountNumber\":\"+23769994794\",\r\n    \"pin\": \"123456\",\r\n    \"sender\":\r\n    {\r\n        \"firstName\":\"Hassan\",\r\n        \"lastName\":\"Youssouf\",\r\n        \"idtype\":\"nationalid\",\r\n        \"phone\":\"+237679692288\",\r\n        \"birthdate\": \"2023-09-01T14:41:55.51\",\r\n        \"idnumber\":\"XC145278\"\r\n    },\r\n    \"recever\":\r\n    {\r\n        \"firstname\":\"Ali\",\r\n        \"lastName\":\"BAGHO\",\r\n        \"idtype\":\"passport\",\r\n        \"phone\":\"+237679692288\",\r\n        \"idnumber\":\"XC145278\",\r\n        \"birthdate\": \"2023-09-01T14:41:55.51\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/remittance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"123"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 26 Sep 2023 09:38:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"\",\n    \"statusMessage\": \"INFO\",\n    \"redirectUrl\": null,\n    \"object\": \"Aucun tarifaire définit pour ce montant\"\n}"}],"_postman_id":"faaca9e8-c2f6-48a3-881a-324eb0023b41"},{"name":"Remittance Status","id":"722dced2-1f20-486b-ac6e-28108a4d72a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"<p><a href=\"https://swagger.io/docs/specification/authentication/bearer-authentication/\">Bearer authentication field</a></p>\n","type":"text"}],"url":"https://test-alianspay.aliansfi.com/api/remittance/check-status?guid=0173568f-e29b-4228-ba57-37b73beaddaa","description":"<p>StartFragment</p>\n<p>Use this to check the status of a given disbursement operation (identified by its guid. The value returned will be PENDING, SUCCESS or ERROR.</p>\n<p>EndFragment</p>\n","urlObject":{"path":["remittance","check-status"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[{"key":"guid","value":"0173568f-e29b-4228-ba57-37b73beaddaa"}],"variable":[]}},"response":[{"id":"d735138b-6c26-4b47-ac16-9bf531668b85","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"url":{"raw":"https://test-alianspay.aliansfi.com/api/decaissement/check-status?guid=0173568f-e29b-4228-ba57-37b73beadda","host":["https://test-alianspay.aliansfi.com/api"],"path":["decaissement","check-status"],"query":[{"key":"guid","value":"0173568f-e29b-4228-ba57-37b73beadda"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"145"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 15 Dec 2022 12:54:18 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"Cette opération a été effectuée avec succès !\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": \"SUCCESSFUL\"\n}"},{"id":"d77da7de-35a6-4ebc-917a-618f416b43f0","name":"Error","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","description":"[Bearer authentication field](https://swagger.io/docs/specification/authentication/bearer-authentication/)","type":"text"}],"url":{"raw":"https://test-alianspay.aliansfi.com/api/decaissement/check-status?guid=21d6da15-1b7e-48b6-bbc1-8d91c5b26b60","host":["https://test-alianspay.aliansfi.com/api"],"path":["decaissement","check-status"],"query":[{"key":"guid","value":"21d6da15-1b7e-48b6-bbc1-8d91c5b26b60"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 19 Dec 2022 11:06:11 GMT"},{"key":"Content-Length","value":"123"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"Cette opération n'existe pas !\",\n    \"statusMessage\": \"INFO\",\n    \"redirectUrl\": null,\n    \"object\": \"NOT_FOUND\"\n}"}],"_postman_id":"722dced2-1f20-486b-ac6e-28108a4d72a2"}],"id":"67218316-d70c-4547-92b0-2474e23b4539","_postman_id":"67218316-d70c-4547-92b0-2474e23b4539","description":""},{"name":"Token","id":"bd1f239f-6647-4a40-afc1-466a65403c8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"login\":\"{{login}}\",\r\n    \"password\":\"{{pass_code}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/accessToken/token","description":"<p>This resource will provide you with an identifier (token) which will be set along with every subsequent request</p>\n","urlObject":{"path":["accessToken","token"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[],"variable":[]}},"response":[{"id":"b183826b-d95e-4f97-a742-00f8d1db202d","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"login\":\"{{login}}\",\r\n    \"password\":\"{{pass_code}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/accessToken/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"1880"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 13 Dec 2022 15:42:01 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjhCQkVBQzkwRTIxMzE0MDdBQTI0MTQ4NkYwQkMxREZENUMyRTE0OEFSUzI1NiIsInR5cCI6ImF0K2p3dCIsIng1dCI6Imk3NnNrT0lURkFlcUpCU0c4THdkX1Z3dUZJbyJ9.eyJuYmYiOjE2NzA5NDYxMjIsImV4cCI6MTY3MDk0NjQyMiwiaXNzIjoiaHR0cHM6Ly90b2tlbi5hbGlhbnNmaS5jb20iLCJhdWQiOiJBTElBTlNQQVkiLCJjbGllbnRfaWQiOiJjb25uZXhpb24iLCJzdWIiOiJhdmx5LnRlY2giLCJhdXRoX3RpbWUiOjE2NzA5NDYxMjIsImlkcCI6ImxvY2FsIiwianRpIjoiRTA1MjhBNThBNkI5MUQ1NUEzMjZFMzdEOTY3QTE3M0EiLCJpYXQiOjE2NzA5NDYxMjIsInNjb3BlIjpbIkFMSUFOU1BBWSJdLCJhbXIiOlsicGFzc3dvcmQiXX0.PQ7C2--Tz6S3o-k_yiQQ_0jNUEhf7JaPiX-Q_SCsT28TVzOe75sqDzIXqjRj0nNqotEAnhQfYMasHKvNKIWi-kgyxScIVWr5FDxapGMkpqOAGQEiJrwfQQCh01tXEIhNCazwni1a5J_oWJHBxc4ZZ3N8qomNl0hCh6By16XeNCmrvbirJh3hrl7H5n4tndE9uAa1mNghJbfKhcEJ_fR6ETlTchrZLR_GsT4t_DdAFqvf0oWEZ3uxXL-Zx-p0ljdI36okqL6_NeePlgTjR-kqDarvoCNknlSHlD6uxDeabgG35zO_ah8R3Z2J5cTuxfTRzRKtmOmmxGihrYp4tgM3Pg\",\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": {\n        \"access_token\": \"eyJhbGciOiJSUzI1NiIsImtpZCI6IjhCQkVBQzkwRTIxMzE0MDdBQTI0MTQ4NkYwQkMxREZENUMyRTE0OEFSUzI1NiIsInR5cCI6ImF0K2p3dCIsIng1dCI6Imk3NnNrT0lURkFlcUpCU0c4THdkX1Z3dUZJbyJ9.eyJuYmYiOjE2NzA5NDYxMjIsImV4cCI6MTY3MDk0NjQyMiwiaXNzIjoiaHR0cHM6Ly90b2tlbi5hbGlhbnNmaS5jb20iLCJhdWQiOiJBTElBTlNQQVkiLCJjbGllbnRfaWQiOiJjb25uZXhpb24iLCJzdWIiOiJhdmx5LnRlY2giLCJhdXRoX3RpbWUiOjE2NzA5NDYxMjIsImlkcCI6ImxvY2FsIiwianRpIjoiRTA1MjhBNThBNkI5MUQ1NUEzMjZFMzdEOTY3QTE3M0EiLCJpYXQiOjE2NzA5NDYxMjIsInNjb3BlIjpbIkFMSUFOU1BBWSJdLCJhbXIiOlsicGFzc3dvcmQiXX0.PQ7C2--Tz6S3o-k_yiQQ_0jNUEhf7JaPiX-Q_SCsT28TVzOe75sqDzIXqjRj0nNqotEAnhQfYMasHKvNKIWi-kgyxScIVWr5FDxapGMkpqOAGQEiJrwfQQCh01tXEIhNCazwni1a5J_oWJHBxc4ZZ3N8qomNl0hCh6By16XeNCmrvbirJh3hrl7H5n4tndE9uAa1mNghJbfKhcEJ_fR6ETlTchrZLR_GsT4t_DdAFqvf0oWEZ3uxXL-Zx-p0ljdI36okqL6_NeePlgTjR-kqDarvoCNknlSHlD6uxDeabgG35zO_ah8R3Z2J5cTuxfTRzRKtmOmmxGihrYp4tgM3Pg\",\n        \"expires_in\": 300,\n        \"refresh_token\": null,\n        \"token_type\": \"Bearer\"\n    }\n}"},{"id":"654de03f-daa9-4c38-971d-dd5796491636","name":"Missing Parameter","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"login\":\"{{login}}\",\r\n    \"password\":\"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/accessToken/token"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"221"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 13 Dec 2022 15:44:41 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": {\n        \"Password\": [\n            \"The Password field is required.\"\n        ]\n    },\n    \"type\": \"https://tools.ietf.org/html/rfc7231#section-6.5.1\",\n    \"title\": \"One or more validation errors occurred.\",\n    \"status\": 400,\n    \"traceId\": \"|8d72a35a-4dc30bf93a324c0d.\"\n}"},{"id":"2f4b24cf-1bd7-4f9f-8209-3fa1d3740b27","name":"Login failed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"login\":\"{{login}}\",\r\n    \"password\":\"fjflflm\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/accessToken/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"116"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 13 Dec 2022 15:45:32 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": false,\n    \"message\": \"Login ou mot de passe incorrect\",\n    \"statusMessage\": \"INFO\",\n    \"redirectUrl\": null,\n    \"object\": null\n}"}],"_postman_id":"bd1f239f-6647-4a40-afc1-466a65403c8c"},{"name":"Balance","id":"ff6fbb9c-58af-4203-86bc-c01b745c7ea9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://test-alianspay.aliansfi.com/api/Compte/balance","urlObject":{"path":["Compte","balance"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[],"variable":[]}},"response":[{"id":"421d6507-3a50-4549-9707-6347b2fb60be","name":"Balance Success","originalRequest":{"method":"GET","header":[],"url":"https://test-alianspay.aliansfi.com/api/Compte/balance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 15 Feb 2023 12:52:47 GMT"},{"key":"Content-Length","value":"154"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": null,\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": {\n        \"availableBalance\": 28992.49,\n        \"realBalance\": 28992.49,\n        \"currency\": \"XAF\"\n    }\n}"}],"_postman_id":"ff6fbb9c-58af-4203-86bc-c01b745c7ea9"},{"name":"History","id":"d9b54a51-d3e7-4843-aba7-fa445ba46cb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://test-alianspay.aliansfi.com/api/Compte/history?startDate=2023-09-01T14:41:55.51&endDate=2023-09-21T14:41:55.51","urlObject":{"path":["Compte","history"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[{"key":"startDate","value":"2023-09-01T14:41:55.51"},{"key":"endDate","value":"2023-09-21T14:41:55.51"}],"variable":[]}},"response":[{"id":"9f898f92-bb2d-4baf-9887-3536ff3d9330","name":"History","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test-alianspay.aliansfi.com/api/Compte/history?startDate=2023-09-01T14:41:55.51&endDate=2023-09-21T14:41:55.51","host":["https://test-alianspay.aliansfi.com/api"],"path":["Compte","history"],"query":[{"key":"startDate","value":"2023-09-01T14:41:55.51"},{"key":"endDate","value":"2023-09-21T14:41:55.51"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"65403"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Strict-Transport-Security","value":"max-age=2592000"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 21 Sep 2023 08:25:20 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": true,\n    \"message\": null,\n    \"statusMessage\": \"SUCCESS\",\n    \"redirectUrl\": null,\n    \"object\": [\n        {\n            \"id\": \"545;4\",\n            \"date\": \"2023-09-20T11:42:51.277\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001914\",\n            \"rang\": 214,\n            \"montant\": -4080,\n            \"solde\": 2042660.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696211036\",\n            \"guid\": \"4b24da34-72fc-4e3e8-2b330c4fe520\"\n        },\n        {\n            \"id\": \"767;4\",\n            \"date\": \"2023-09-20T11:03:00.303\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001913\",\n            \"rang\": 213,\n            \"montant\": -10207.14,\n            \"solde\": 2046740.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237699607260\",\n            \"guid\": \"629f6793-61ae-4870-936a-c43dc69e3876\"\n        },\n        {\n            \"id\": \"2086;5\",\n            \"date\": \"2023-09-20T10:52:31.01\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001914\",\n            \"rang\": 212,\n            \"montant\": 150,\n            \"solde\": 2056947.94,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"ENCAISSEMENT\",\n            \"transactionCode\": \"ENCAISSEMENT\",\n            \"reference\": \"237699692280\",\n            \"guid\": \"4b64b448-8e81-4026-9297-032bc3febf81\"\n        },\n        {\n            \"id\": \"544;4\",\n            \"date\": \"2023-09-20T06:57:54.72\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001913\",\n            \"rang\": 211,\n            \"montant\": -2550,\n            \"solde\": 2056797.94,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656629522\",\n            \"guid\": \"4b24da34-72fc-4ee6-b3e8-2b330c4fe\"\n        },\n        {\n            \"id\": \"768;4\",\n            \"date\": \"2023-09-13T15:54:32.263\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001885\",\n            \"rang\": 210,\n            \"montant\": -12209,\n            \"solde\": 2059347.94,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677303508\",\n            \"guid\": \"7efa0e17-6f6b-4fda-8b06-3015bc159e2d\"\n        },\n        {\n            \"id\": \"766;4\",\n            \"date\": \"2023-09-13T15:54:06.557\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001883\",\n            \"rang\": 209,\n            \"montant\": -15303.06,\n            \"solde\": 2071556.94,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237690310161\",\n            \"guid\": \"cf5ce6b8-08b3-4a32-9c48-989bf0132914\"\n        },\n        {\n            \"id\": \"765;4\",\n            \"date\": \"2023-09-13T15:44:16.133\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001882\",\n            \"rang\": 208,\n            \"montant\": -10207.14,\n            \"solde\": 2086860,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237699607260\",\n            \"guid\": \"a7838f11-b31e-4b51-8308-2be6bd3a6f5f\"\n        },\n        {\n            \"id\": \"764;4\",\n            \"date\": \"2023-09-13T15:44:02.247\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001881\",\n            \"rang\": 207,\n            \"montant\": -15303.06,\n            \"solde\": 2097067.14,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237690310161\",\n            \"guid\": \"e23a5405-0c6f-47fc-963c-e9066f8a77d7\"\n        },\n        {\n            \"id\": \"763;4\",\n            \"date\": \"2023-09-13T11:31:27.207\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001880\",\n            \"rang\": 206,\n            \"montant\": -112.2,\n            \"solde\": 2112370.2,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694935037\",\n            \"guid\": \"8bf0b105-1653-4249-b72d-9e0dc2fca945\"\n        },\n        {\n            \"id\": \"762;4\",\n            \"date\": \"2023-09-13T11:31:13.257\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001879\",\n            \"rang\": 205,\n            \"montant\": -163.2,\n            \"solde\": 2112482.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237690345325\",\n            \"guid\": \"0fc13d8e-909d-4eb3-a718-f23ea52dd1d3\"\n        },\n        {\n            \"id\": \"761;4\",\n            \"date\": \"2023-09-13T11:30:59.167\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001878\",\n            \"rang\": 204,\n            \"montant\": -443.7,\n            \"solde\": 2112645.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696514141\",\n            \"guid\": \"7393c430-5c82-4ca5-9dc7-4dca2e2f199b\"\n        },\n        {\n            \"id\": \"760;4\",\n            \"date\": \"2023-09-13T11:30:45.887\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001877\",\n            \"rang\": 203,\n            \"montant\": -408,\n            \"solde\": 2113089.3,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656113394\",\n            \"guid\": \"4a7d2b97-44ec-4bf7-8d23-972a77e4edac\"\n        },\n        {\n            \"id\": \"759;4\",\n            \"date\": \"2023-09-13T11:30:31.737\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001876\",\n            \"rang\": 202,\n            \"montant\": -336.6,\n            \"solde\": 2113497.3,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696739950\",\n            \"guid\": \"630daaf7-f34c-428b-942f-2d399a885870\"\n        },\n        {\n            \"id\": \"758;4\",\n            \"date\": \"2023-09-13T11:30:17.127\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001875\",\n            \"rang\": 201,\n            \"montant\": -110,\n            \"solde\": 2113833.9,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237674258973\",\n            \"guid\": \"021298f9-0018-4266-9148-6640ec7f8712\"\n        },\n        {\n            \"id\": \"757;4\",\n            \"date\": \"2023-09-13T11:30:04.037\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001874\",\n            \"rang\": 200,\n            \"montant\": -230,\n            \"solde\": 2113943.9,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677429831\",\n            \"guid\": \"126d30f3-c75f-4769-8fad-b51caa677d77\"\n        },\n        {\n            \"id\": \"756;4\",\n            \"date\": \"2023-09-13T11:29:53.547\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001873\",\n            \"rang\": 199,\n            \"montant\": -153,\n            \"solde\": 2114173.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694655369\",\n            \"guid\": \"8f28083b-7add-430e-b7a6-985d9acbe5b9\"\n        },\n        {\n            \"id\": \"755;4\",\n            \"date\": \"2023-09-13T11:29:37.737\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001872\",\n            \"rang\": 198,\n            \"montant\": -400,\n            \"solde\": 2114326.9,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237671771963\",\n            \"guid\": \"6752b4bb-69f3-492c-8bcc-a524101dff7c\"\n        },\n        {\n            \"id\": \"754;4\",\n            \"date\": \"2023-09-13T11:29:26.83\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001871\",\n            \"rang\": 197,\n            \"montant\": -204,\n            \"solde\": 2114726.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697905415\",\n            \"guid\": \"7d0590b5-7978-4822-9874-4ea4545863f2\"\n        },\n        {\n            \"id\": \"753;4\",\n            \"date\": \"2023-09-13T11:29:11.567\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001870\",\n            \"rang\": 196,\n            \"montant\": -160,\n            \"solde\": 2114930.9,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237674732937\",\n            \"guid\": \"c404b669-99e9-4c5f-921f-5ca1ae29b576\"\n        },\n        {\n            \"id\": \"752;4\",\n            \"date\": \"2023-09-13T11:29:00.127\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001869\",\n            \"rang\": 195,\n            \"montant\": -188.7,\n            \"solde\": 2115090.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237695275498\",\n            \"guid\": \"b1e88795-8e68-42cb-ab3c-1958f5f18b6e\"\n        },\n        {\n            \"id\": \"751;4\",\n            \"date\": \"2023-09-13T11:28:45.373\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001868\",\n            \"rang\": 194,\n            \"montant\": -420,\n            \"solde\": 2115279.6,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676679564\",\n            \"guid\": \"62d4a7f8-f723-460b-8ff7-7527c1aaaa68\"\n        },\n        {\n            \"id\": \"750;4\",\n            \"date\": \"2023-09-13T11:28:33.98\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001867\",\n            \"rang\": 193,\n            \"montant\": -331.5,\n            \"solde\": 2115699.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696585722\",\n            \"guid\": \"118afe55-415b-40d0-acd5-00e8a0150652\"\n        },\n        {\n            \"id\": \"749;4\",\n            \"date\": \"2023-09-13T11:28:20.133\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001866\",\n            \"rang\": 192,\n            \"montant\": -400,\n            \"solde\": 2116031.1,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679376853\",\n            \"guid\": \"add409da-0f5f-4060-8284-e7f97b372332\"\n        },\n        {\n            \"id\": \"748;4\",\n            \"date\": \"2023-09-13T11:28:07.553\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001865\",\n            \"rang\": 191,\n            \"montant\": -433.5,\n            \"solde\": 2116431.1,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237659163608\",\n            \"guid\": \"66e4e8ab-1b95-4174-a16b-e8e20d7e74d7\"\n        },\n        {\n            \"id\": \"747;4\",\n            \"date\": \"2023-09-13T11:27:54.643\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001864\",\n            \"rang\": 190,\n            \"montant\": -168.3,\n            \"solde\": 2116864.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694436450\",\n            \"guid\": \"2fd69cfd-184a-431c-9d29-64786d82c5a3\"\n        },\n        {\n            \"id\": \"746;4\",\n            \"date\": \"2023-09-13T11:27:40.483\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001863\",\n            \"rang\": 189,\n            \"montant\": -249.9,\n            \"solde\": 2117032.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237655024757\",\n            \"guid\": \"95a96cf4-7cf7-44ea-a79d-23ec4fe2541e\"\n        },\n        {\n            \"id\": \"745;4\",\n            \"date\": \"2023-09-13T11:27:26.45\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001862\",\n            \"rang\": 188,\n            \"montant\": -193.8,\n            \"solde\": 2117282.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696211036\",\n            \"guid\": \"3f24eac3-3461-4830-9d75-20bd328d0788\"\n        },\n        {\n            \"id\": \"744;4\",\n            \"date\": \"2023-09-13T11:27:12.9\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001861\",\n            \"rang\": 187,\n            \"montant\": -275,\n            \"solde\": 2117476.6,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237671844791\",\n            \"guid\": \"c5bfed3a-ed77-487d-a8da-ab6ab9e88add\"\n        },\n        {\n            \"id\": \"743;4\",\n            \"date\": \"2023-09-13T11:27:01.41\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001860\",\n            \"rang\": 186,\n            \"montant\": -408,\n            \"solde\": 2117751.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691159461\",\n            \"guid\": \"58ec5d0d-3cab-41a6-b0f9-adb36614020e\"\n        },\n        {\n            \"id\": \"742;4\",\n            \"date\": \"2023-09-13T11:26:46.78\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001859\",\n            \"rang\": 185,\n            \"montant\": -330,\n            \"solde\": 2118159.6,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237675081988\",\n            \"guid\": \"d7365a58-ff51-404a-a5d6-0d93af02af9a\"\n        },\n        {\n            \"id\": \"741;4\",\n            \"date\": \"2023-09-13T11:26:34.517\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001858\",\n            \"rang\": 184,\n            \"montant\": -225,\n            \"solde\": 2118489.6,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237681730106\",\n            \"guid\": \"eed6286f-f059-4398-a6a7-ef42bb9fcfe8\"\n        },\n        {\n            \"id\": \"740;4\",\n            \"date\": \"2023-09-13T11:26:23.14\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001857\",\n            \"rang\": 183,\n            \"montant\": -510,\n            \"solde\": 2118714.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656629522\",\n            \"guid\": \"4194eafd-cb5b-4a9d-99b7-767f4f086b4d\"\n        },\n        {\n            \"id\": \"739;4\",\n            \"date\": \"2023-09-13T11:26:08.233\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001856\",\n            \"rang\": 182,\n            \"montant\": -25000,\n            \"solde\": 2119224.6,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676973893\",\n            \"guid\": \"a049dfc1-d3e3-478b-994d-20ee589c9711\"\n        },\n        {\n            \"id\": \"738;4\",\n            \"date\": \"2023-09-13T11:25:56.86\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001855\",\n            \"rang\": 181,\n            \"montant\": -15300,\n            \"solde\": 2144224.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697219754\",\n            \"guid\": \"bb664266-66f9-4dcd-bfbf-96caf8c33c59\"\n        },\n        {\n            \"id\": \"737;4\",\n            \"date\": \"2023-09-12T13:39:05.873\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001854\",\n            \"rang\": 180,\n            \"montant\": -112.2,\n            \"solde\": 2159524.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694935037\",\n            \"guid\": \"6533acf2-49d7-4416-b84b-9b09cd80a2f0\"\n        },\n        {\n            \"id\": \"736;4\",\n            \"date\": \"2023-09-12T13:38:51.627\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001853\",\n            \"rang\": 179,\n            \"montant\": -163.2,\n            \"solde\": 2159636.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237690345325\",\n            \"guid\": \"736bec79-b6e9-4d17-a752-fd9ffb0efc4f\"\n        },\n        {\n            \"id\": \"735;4\",\n            \"date\": \"2023-09-12T13:38:37.527\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001852\",\n            \"rang\": 178,\n            \"montant\": -443.7,\n            \"solde\": 2159800,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696514141\",\n            \"guid\": \"d37b5e40-cac7-49fb-913e-2fc30c331965\"\n        },\n        {\n            \"id\": \"734;4\",\n            \"date\": \"2023-09-12T13:38:23.617\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001851\",\n            \"rang\": 177,\n            \"montant\": -408,\n            \"solde\": 2160243.7,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656113394\",\n            \"guid\": \"43e4e217-70ce-49e2-893e-d035775efd98\"\n        },\n        {\n            \"id\": \"733;4\",\n            \"date\": \"2023-09-12T13:38:10.47\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001850\",\n            \"rang\": 176,\n            \"montant\": -336.6,\n            \"solde\": 2160651.7,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696739950\",\n            \"guid\": \"9fa7027c-05c2-40c6-a707-ee70b051b990\"\n        },\n        {\n            \"id\": \"732;4\",\n            \"date\": \"2023-09-12T13:37:56.74\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001849\",\n            \"rang\": 175,\n            \"montant\": -110,\n            \"solde\": 2160988.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237674258973\",\n            \"guid\": \"9defd75d-b4c1-4c06-ad71-87f1b703e10c\"\n        },\n        {\n            \"id\": \"731;4\",\n            \"date\": \"2023-09-12T13:37:44.52\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001848\",\n            \"rang\": 174,\n            \"montant\": -230,\n            \"solde\": 2161098.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677429831\",\n            \"guid\": \"e3b6d6eb-261c-4663-8f15-76bf145af64b\"\n        },\n        {\n            \"id\": \"730;4\",\n            \"date\": \"2023-09-12T13:37:33.247\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001847\",\n            \"rang\": 173,\n            \"montant\": -153,\n            \"solde\": 2161328.3,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694655369\",\n            \"guid\": \"fc8c99e5-5016-4eb7-93fb-69aeb432ac72\"\n        },\n        {\n            \"id\": \"729;4\",\n            \"date\": \"2023-09-12T13:37:18.407\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001846\",\n            \"rang\": 172,\n            \"montant\": -400,\n            \"solde\": 2161481.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237671771963\",\n            \"guid\": \"16e74704-8d90-4f1e-ba80-b455a78e0a39\"\n        },\n        {\n            \"id\": \"728;4\",\n            \"date\": \"2023-09-12T13:37:06.027\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001845\",\n            \"rang\": 171,\n            \"montant\": -204,\n            \"solde\": 2161881.3,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697905415\",\n            \"guid\": \"a8ff023e-9dec-41ab-a4c3-7c6bbc685e9e\"\n        },\n        {\n            \"id\": \"727;4\",\n            \"date\": \"2023-09-12T13:36:51.243\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001844\",\n            \"rang\": 170,\n            \"montant\": -160,\n            \"solde\": 2162085.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237674732937\",\n            \"guid\": \"005c5e91-4b6b-4b45-b4d5-eb963e3bcacb\"\n        },\n        {\n            \"id\": \"726;4\",\n            \"date\": \"2023-09-12T13:36:39.77\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001843\",\n            \"rang\": 169,\n            \"montant\": -188.7,\n            \"solde\": 2162245.3,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237695275498\",\n            \"guid\": \"d65bcb6d-a88f-4131-877a-fb47d8958638\"\n        },\n        {\n            \"id\": \"725;4\",\n            \"date\": \"2023-09-12T13:36:23.93\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001842\",\n            \"rang\": 168,\n            \"montant\": -420,\n            \"solde\": 2162434,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676679564\",\n            \"guid\": \"61f0d856-8114-4f5d-865f-364427af68ce\"\n        },\n        {\n            \"id\": \"724;4\",\n            \"date\": \"2023-09-12T13:36:12.5\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001841\",\n            \"rang\": 167,\n            \"montant\": -331.5,\n            \"solde\": 2162854,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696585722\",\n            \"guid\": \"f27906e5-2245-4151-9412-3c4dd0fe625a\"\n        },\n        {\n            \"id\": \"723;4\",\n            \"date\": \"2023-09-12T13:35:58.94\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001840\",\n            \"rang\": 166,\n            \"montant\": -400,\n            \"solde\": 2163185.5,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679376853\",\n            \"guid\": \"4d76b110-dca6-4776-9cd8-29a8c624371c\"\n        },\n        {\n            \"id\": \"722;4\",\n            \"date\": \"2023-09-12T13:35:48.39\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001839\",\n            \"rang\": 165,\n            \"montant\": -433.5,\n            \"solde\": 2163585.5,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237659163608\",\n            \"guid\": \"c5d39184-1679-47a9-a7e1-2e2b1c02cd6f\"\n        },\n        {\n            \"id\": \"721;4\",\n            \"date\": \"2023-09-12T13:35:33.453\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001838\",\n            \"rang\": 164,\n            \"montant\": -168.3,\n            \"solde\": 2164019,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694436450\",\n            \"guid\": \"63e4d05d-946d-4fdd-ae05-0d249fa0fb5e\"\n        },\n        {\n            \"id\": \"720;4\",\n            \"date\": \"2023-09-12T13:35:21.883\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001837\",\n            \"rang\": 163,\n            \"montant\": -249.9,\n            \"solde\": 2164187.3,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237655024757\",\n            \"guid\": \"5fe553fb-50ba-49bd-affa-fc492d52d1d4\"\n        },\n        {\n            \"id\": \"719;4\",\n            \"date\": \"2023-09-12T13:35:06\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001836\",\n            \"rang\": 162,\n            \"montant\": -193.8,\n            \"solde\": 2164437.2,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696211036\",\n            \"guid\": \"2cfada04-4e1a-46a5-a2d1-cfd7779531dc\"\n        },\n        {\n            \"id\": \"718;4\",\n            \"date\": \"2023-09-12T13:34:49.587\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001835\",\n            \"rang\": 161,\n            \"montant\": -275,\n            \"solde\": 2164631,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237671844791\",\n            \"guid\": \"f7ad53d6-024f-482c-a20e-a9ea2bb28cfd\"\n        },\n        {\n            \"id\": \"717;4\",\n            \"date\": \"2023-09-12T13:34:37.04\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001834\",\n            \"rang\": 160,\n            \"montant\": -408,\n            \"solde\": 2164906,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691159461\",\n            \"guid\": \"d3347228-7c70-4935-9168-b30452fc9838\"\n        },\n        {\n            \"id\": \"716;4\",\n            \"date\": \"2023-09-12T13:34:23.277\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001833\",\n            \"rang\": 159,\n            \"montant\": -330,\n            \"solde\": 2165314,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237675081988\",\n            \"guid\": \"379744dc-a302-439f-876d-4f5946303ce7\"\n        },\n        {\n            \"id\": \"715;4\",\n            \"date\": \"2023-09-12T13:34:11.207\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001832\",\n            \"rang\": 158,\n            \"montant\": -225,\n            \"solde\": 2165644,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237681730106\",\n            \"guid\": \"3e61eb87-be09-43be-be92-a285544194ab\"\n        },\n        {\n            \"id\": \"714;4\",\n            \"date\": \"2023-09-12T13:33:58.833\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001831\",\n            \"rang\": 157,\n            \"montant\": -510,\n            \"solde\": 2165869,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656629522\",\n            \"guid\": \"0d830c09-4ee7-4593-9ec8-c1210a982513\"\n        },\n        {\n            \"id\": \"713;4\",\n            \"date\": \"2023-09-12T13:33:22.25\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001830\",\n            \"rang\": 156,\n            \"montant\": -14001,\n            \"solde\": 2166379,\n            \"modeReglement\": \"ALIANS PAY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679799607\",\n            \"guid\": \"88b38608-6527-4cdb-80e4-c74a893666c4\"\n        },\n        {\n            \"id\": \"712;4\",\n            \"date\": \"2023-09-12T13:33:12.197\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001829\",\n            \"rang\": 155,\n            \"montant\": -8001,\n            \"solde\": 2180380,\n            \"modeReglement\": \"ALIANS PAY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"hkman1778@gmx.com\",\n            \"guid\": \"523058ce-e9cb-491f-a8cb-49e35becf09e\"\n        },\n        {\n            \"id\": \"711;4\",\n            \"date\": \"2023-09-12T13:33:02.81\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001828\",\n            \"rang\": 154,\n            \"montant\": -25000,\n            \"solde\": 2188381,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676973893\",\n            \"guid\": \"87fbe9fe-e645-492c-aa1b-795c1c9e3d69\"\n        },\n        {\n            \"id\": \"710;4\",\n            \"date\": \"2023-09-12T13:32:50.04\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001827\",\n            \"rang\": 153,\n            \"montant\": -15300,\n            \"solde\": 2213381,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697219754\",\n            \"guid\": \"6c29ee96-c262-4cb5-9d6a-88e091dc14ab\"\n        },\n        {\n            \"id\": \"709;4\",\n            \"date\": \"2023-09-12T11:28:02.483\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001826\",\n            \"rang\": 152,\n            \"montant\": -112.2,\n            \"solde\": 2228681,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694935037\",\n            \"guid\": \"4bd4415c-d970-4fa2-980a-9a8a26a1e680\"\n        },\n        {\n            \"id\": \"708;4\",\n            \"date\": \"2023-09-12T11:27:48.403\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001825\",\n            \"rang\": 151,\n            \"montant\": -163.2,\n            \"solde\": 2228793.2,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237690345325\",\n            \"guid\": \"2cd87ac2-977a-45d3-a9d1-ab142a409f4d\"\n        },\n        {\n            \"id\": \"707;4\",\n            \"date\": \"2023-09-12T11:27:35.223\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001824\",\n            \"rang\": 150,\n            \"montant\": -443.7,\n            \"solde\": 2228956.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696514141\",\n            \"guid\": \"5dfaaad6-1b16-4511-a8d7-d22091fd136f\"\n        },\n        {\n            \"id\": \"706;4\",\n            \"date\": \"2023-09-12T11:27:21.653\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001823\",\n            \"rang\": 149,\n            \"montant\": -408,\n            \"solde\": 2229400.1,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656113394\",\n            \"guid\": \"7a8ea133-6783-45f4-8534-6642ab489245\"\n        },\n        {\n            \"id\": \"705;4\",\n            \"date\": \"2023-09-12T11:27:06.98\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001822\",\n            \"rang\": 148,\n            \"montant\": -336.6,\n            \"solde\": 2229808.1,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696739950\",\n            \"guid\": \"a13a78e3-e2d5-44db-8076-d878560f2cff\"\n        },\n        {\n            \"id\": \"704;4\",\n            \"date\": \"2023-09-12T11:26:53.55\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001821\",\n            \"rang\": 147,\n            \"montant\": -110,\n            \"solde\": 2230144.7,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237674258973\",\n            \"guid\": \"d807d3c9-488c-4889-b983-f5aaf353711e\"\n        },\n        {\n            \"id\": \"703;4\",\n            \"date\": \"2023-09-12T11:26:40.447\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001820\",\n            \"rang\": 146,\n            \"montant\": -230,\n            \"solde\": 2230254.7,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677429831\",\n            \"guid\": \"149b895f-5cff-43c9-9a51-b7ec6d923aa5\"\n        },\n        {\n            \"id\": \"702;4\",\n            \"date\": \"2023-09-12T11:26:28.81\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001819\",\n            \"rang\": 145,\n            \"montant\": -153,\n            \"solde\": 2230484.7,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694655369\",\n            \"guid\": \"676e3f27-c3b3-4977-9036-4a54bea5b989\"\n        },\n        {\n            \"id\": \"701;4\",\n            \"date\": \"2023-09-12T11:26:14.007\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001818\",\n            \"rang\": 144,\n            \"montant\": -400,\n            \"solde\": 2230637.7,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237671771963\",\n            \"guid\": \"c338fe72-c130-435e-91da-fb6f267d11fa\"\n        },\n        {\n            \"id\": \"700;4\",\n            \"date\": \"2023-09-12T11:26:01.827\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001817\",\n            \"rang\": 143,\n            \"montant\": -204,\n            \"solde\": 2231037.7,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697905415\",\n            \"guid\": \"a8e3cfba-5558-46fc-bc6d-d4a8dfb52d2e\"\n        },\n        {\n            \"id\": \"699;4\",\n            \"date\": \"2023-09-12T11:25:47.99\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001816\",\n            \"rang\": 142,\n            \"montant\": -160,\n            \"solde\": 2231241.7,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237674732937\",\n            \"guid\": \"33383ba2-94f1-4b96-94a1-55fd3e1dd3aa\"\n        },\n        {\n            \"id\": \"698;4\",\n            \"date\": \"2023-09-12T11:25:35.353\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001815\",\n            \"rang\": 141,\n            \"montant\": -188.7,\n            \"solde\": 2231401.7,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237695275498\",\n            \"guid\": \"1edaf3b3-423a-4377-91cc-57002c43f19b\"\n        },\n        {\n            \"id\": \"697;4\",\n            \"date\": \"2023-09-12T11:25:20.553\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001814\",\n            \"rang\": 140,\n            \"montant\": -420,\n            \"solde\": 2231590.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676679564\",\n            \"guid\": \"15ae3745-f904-4c6d-b2f4-9584d8cae655\"\n        },\n        {\n            \"id\": \"696;4\",\n            \"date\": \"2023-09-12T11:25:09.28\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001813\",\n            \"rang\": 139,\n            \"montant\": -331.5,\n            \"solde\": 2232010.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696585722\",\n            \"guid\": \"315c4722-aa5d-4703-9f51-fb07307f1166\"\n        },\n        {\n            \"id\": \"695;4\",\n            \"date\": \"2023-09-12T11:24:54.393\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001812\",\n            \"rang\": 138,\n            \"montant\": -400,\n            \"solde\": 2232341.9,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679376853\",\n            \"guid\": \"12182cd9-2fe0-4c26-a56c-19cbc271583a\"\n        },\n        {\n            \"id\": \"694;4\",\n            \"date\": \"2023-09-12T11:24:43.03\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001811\",\n            \"rang\": 137,\n            \"montant\": -433.5,\n            \"solde\": 2232741.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237659163608\",\n            \"guid\": \"336f221b-6a14-40ee-989a-034d28aa0d66\"\n        },\n        {\n            \"id\": \"693;4\",\n            \"date\": \"2023-09-12T11:24:30.05\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001810\",\n            \"rang\": 136,\n            \"montant\": -168.3,\n            \"solde\": 2233175.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694436450\",\n            \"guid\": \"4299352f-5607-4472-9b64-ab851b801fd1\"\n        },\n        {\n            \"id\": \"692;4\",\n            \"date\": \"2023-09-12T11:24:17.483\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001809\",\n            \"rang\": 135,\n            \"montant\": -249.9,\n            \"solde\": 2233343.7,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237655024757\",\n            \"guid\": \"1e15d304-df7c-4a95-b9bc-970e8d6a5a6f\"\n        },\n        {\n            \"id\": \"691;4\",\n            \"date\": \"2023-09-12T11:24:00.757\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001808\",\n            \"rang\": 134,\n            \"montant\": -193.8,\n            \"solde\": 2233593.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696211036\",\n            \"guid\": \"572b4846-0a4c-4e22-b1c6-10e18e8869b8\"\n        },\n        {\n            \"id\": \"690;4\",\n            \"date\": \"2023-09-12T11:23:47.117\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001807\",\n            \"rang\": 133,\n            \"montant\": -275,\n            \"solde\": 2233787.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237671844791\",\n            \"guid\": \"4759c53f-43b6-4267-9a04-37f652171197\"\n        },\n        {\n            \"id\": \"689;4\",\n            \"date\": \"2023-09-12T11:23:35.82\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001806\",\n            \"rang\": 132,\n            \"montant\": -408,\n            \"solde\": 2234062.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691159461\",\n            \"guid\": \"162825ea-b42b-4938-b0e8-4d1b66c5bba1\"\n        },\n        {\n            \"id\": \"688;4\",\n            \"date\": \"2023-09-12T11:23:20.99\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001805\",\n            \"rang\": 131,\n            \"montant\": -330,\n            \"solde\": 2234470.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237675081988\",\n            \"guid\": \"ae558db6-ee82-45c3-a5be-5d22848298e8\"\n        },\n        {\n            \"id\": \"687;4\",\n            \"date\": \"2023-09-12T11:23:08.887\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001804\",\n            \"rang\": 130,\n            \"montant\": -225,\n            \"solde\": 2234800.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237681730106\",\n            \"guid\": \"d69886d3-0745-4579-b933-5ea50e20fef8\"\n        },\n        {\n            \"id\": \"686;4\",\n            \"date\": \"2023-09-12T11:22:57.113\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001803\",\n            \"rang\": 129,\n            \"montant\": -510,\n            \"solde\": 2235025.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656629522\",\n            \"guid\": \"691f94bd-c6af-4c58-850f-e7eef0ace8ed\"\n        },\n        {\n            \"id\": \"685;4\",\n            \"date\": \"2023-09-12T11:22:42.473\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001802\",\n            \"rang\": 128,\n            \"montant\": -25000,\n            \"solde\": 2235535.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676973893\",\n            \"guid\": \"52222e31-8dff-415d-ab5b-60e3611cc77b\"\n        },\n        {\n            \"id\": \"684;4\",\n            \"date\": \"2023-09-12T11:22:32.253\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001801\",\n            \"rang\": 127,\n            \"montant\": -15300,\n            \"solde\": 2260535.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697219754\",\n            \"guid\": \"3fee7189-ba68-4105-8b14-1183906ef5bd\"\n        },\n        {\n            \"id\": \"683;4\",\n            \"date\": \"2023-09-08T15:22:23.747\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001800\",\n            \"rang\": 126,\n            \"montant\": -112.2,\n            \"solde\": 2275835.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694935037\",\n            \"guid\": \"fa00a1c8-0c2d-4ed2-ae3e-e3fa63387ef4\"\n        },\n        {\n            \"id\": \"682;4\",\n            \"date\": \"2023-09-08T15:22:10.277\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001799\",\n            \"rang\": 125,\n            \"montant\": -163.2,\n            \"solde\": 2275947.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237690345325\",\n            \"guid\": \"376867d8-8cf7-4ed8-966b-ae6d88501f64\"\n        },\n        {\n            \"id\": \"681;4\",\n            \"date\": \"2023-09-08T15:21:57.263\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001798\",\n            \"rang\": 124,\n            \"montant\": -443.7,\n            \"solde\": 2276110.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696514141\",\n            \"guid\": \"e293e824-783c-443a-8b0a-2469281ed17d\"\n        },\n        {\n            \"id\": \"680;4\",\n            \"date\": \"2023-09-08T15:21:42.01\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001797\",\n            \"rang\": 123,\n            \"montant\": -408,\n            \"solde\": 2276554.5,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656113394\",\n            \"guid\": \"6061a398-1a11-403f-af23-cdfea2e99d39\"\n        },\n        {\n            \"id\": \"679;4\",\n            \"date\": \"2023-09-08T15:21:28.027\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001796\",\n            \"rang\": 122,\n            \"montant\": -336.6,\n            \"solde\": 2276962.5,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696739950\",\n            \"guid\": \"ac7bbe6f-9a75-42d3-b826-d4f1d6d05e23\"\n        },\n        {\n            \"id\": \"678;4\",\n            \"date\": \"2023-09-08T15:21:13.22\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001795\",\n            \"rang\": 121,\n            \"montant\": -110,\n            \"solde\": 2277299.1,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237674258973\",\n            \"guid\": \"3aff2ad8-2125-4c79-8517-1e19a03c5cd6\"\n        },\n        {\n            \"id\": \"677;4\",\n            \"date\": \"2023-09-08T15:21:03.4\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001794\",\n            \"rang\": 120,\n            \"montant\": -230,\n            \"solde\": 2277409.1,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677429831\",\n            \"guid\": \"abd9464f-0bad-48d9-8346-bcb3d28c6d92\"\n        },\n        {\n            \"id\": \"676;4\",\n            \"date\": \"2023-09-08T15:20:49.633\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001793\",\n            \"rang\": 119,\n            \"montant\": -153,\n            \"solde\": 2277639.1,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694655369\",\n            \"guid\": \"9f4faa28-53bc-4ace-988d-a0c7a93d74ae\"\n        },\n        {\n            \"id\": \"675;4\",\n            \"date\": \"2023-09-08T15:20:35.843\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001792\",\n            \"rang\": 118,\n            \"montant\": -400,\n            \"solde\": 2277792.1,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237671771963\",\n            \"guid\": \"30f783db-e324-4b73-9d66-72153e2618de\"\n        },\n        {\n            \"id\": \"674;4\",\n            \"date\": \"2023-09-08T15:20:24.39\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001791\",\n            \"rang\": 117,\n            \"montant\": -204,\n            \"solde\": 2278192.1,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697905415\",\n            \"guid\": \"e307a2d0-85d0-4c97-bbc9-dd602c26546e\"\n        },\n        {\n            \"id\": \"673;4\",\n            \"date\": \"2023-09-08T15:20:10.84\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001790\",\n            \"rang\": 116,\n            \"montant\": -160,\n            \"solde\": 2278396.1,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237674732937\",\n            \"guid\": \"24f91161-e871-48a6-ad97-e909d00edd4c\"\n        },\n        {\n            \"id\": \"672;4\",\n            \"date\": \"2023-09-08T15:19:58.327\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001789\",\n            \"rang\": 115,\n            \"montant\": -188.7,\n            \"solde\": 2278556.1,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237695275498\",\n            \"guid\": \"05d6fdb2-e454-4b18-8d93-0fca52011553\"\n        },\n        {\n            \"id\": \"671;4\",\n            \"date\": \"2023-09-08T15:19:43.537\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001788\",\n            \"rang\": 114,\n            \"montant\": -420,\n            \"solde\": 2278744.8,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676679564\",\n            \"guid\": \"57f869b9-c900-4116-9563-faa117a259ce\"\n        },\n        {\n            \"id\": \"670;4\",\n            \"date\": \"2023-09-08T15:19:32.083\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001787\",\n            \"rang\": 113,\n            \"montant\": -331.5,\n            \"solde\": 2279164.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696585722\",\n            \"guid\": \"bd0ac559-3029-456e-82c0-56001042fc5f\"\n        },\n        {\n            \"id\": \"669;4\",\n            \"date\": \"2023-09-08T15:19:17.39\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001786\",\n            \"rang\": 112,\n            \"montant\": -400,\n            \"solde\": 2279496.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679376853\",\n            \"guid\": \"a3efe7e9-48f7-4174-b897-25dc91552486\"\n        },\n        {\n            \"id\": \"668;4\",\n            \"date\": \"2023-09-08T15:19:06.693\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001785\",\n            \"rang\": 111,\n            \"montant\": -433.5,\n            \"solde\": 2279896.3,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237659163608\",\n            \"guid\": \"24775e3e-9ca4-4a03-b536-340ff6685073\"\n        },\n        {\n            \"id\": \"667;4\",\n            \"date\": \"2023-09-08T15:18:51.727\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001784\",\n            \"rang\": 110,\n            \"montant\": -168.3,\n            \"solde\": 2280329.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694436450\",\n            \"guid\": \"b671f19b-a3a8-4f5f-88e2-37291e3b9386\"\n        },\n        {\n            \"id\": \"666;4\",\n            \"date\": \"2023-09-08T15:18:38.877\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001783\",\n            \"rang\": 109,\n            \"montant\": -249.9,\n            \"solde\": 2280498.1,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237655024757\",\n            \"guid\": \"73bf1b8e-cff8-4073-9092-946ed04a07ee\"\n        },\n        {\n            \"id\": \"665;4\",\n            \"date\": \"2023-09-08T15:18:25.497\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001782\",\n            \"rang\": 108,\n            \"montant\": -193.8,\n            \"solde\": 2280748,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696211036\",\n            \"guid\": \"ecb79be7-81bf-4835-adb6-09c63ab2d508\"\n        },\n        {\n            \"id\": \"664;4\",\n            \"date\": \"2023-09-08T15:18:09.85\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001781\",\n            \"rang\": 107,\n            \"montant\": -275,\n            \"solde\": 2280941.8,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237671844791\",\n            \"guid\": \"5aaf8d5c-76bd-4bed-9b81-7f7310ca1569\"\n        },\n        {\n            \"id\": \"663;4\",\n            \"date\": \"2023-09-08T15:17:58.357\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001780\",\n            \"rang\": 106,\n            \"montant\": -408,\n            \"solde\": 2281216.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691159461\",\n            \"guid\": \"609012f8-9128-42c8-96dd-1fdf5434e0ff\"\n        },\n        {\n            \"id\": \"662;4\",\n            \"date\": \"2023-09-08T15:17:43.623\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001779\",\n            \"rang\": 105,\n            \"montant\": -330,\n            \"solde\": 2281624.8,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237675081988\",\n            \"guid\": \"7f443442-11fc-4b86-b34f-7fbef8635fe5\"\n        },\n        {\n            \"id\": \"661;4\",\n            \"date\": \"2023-09-08T15:17:32.6\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001778\",\n            \"rang\": 104,\n            \"montant\": -225,\n            \"solde\": 2281954.8,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237681730106\",\n            \"guid\": \"83aa2e3a-2092-4ddb-8635-ba230dcb4f93\"\n        },\n        {\n            \"id\": \"660;4\",\n            \"date\": \"2023-09-08T15:17:20.793\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001777\",\n            \"rang\": 103,\n            \"montant\": -510,\n            \"solde\": 2282179.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656629522\",\n            \"guid\": \"0d8c826b-5a9c-44ba-b4c0-c775ef644391\"\n        },\n        {\n            \"id\": \"659;4\",\n            \"date\": \"2023-09-08T15:16:43.533\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001776\",\n            \"rang\": 102,\n            \"montant\": -14001,\n            \"solde\": 2282689.8,\n            \"modeReglement\": \"ALIANS PAY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679799607\",\n            \"guid\": \"417302a9-55b8-4538-a1c2-698bd5d00157\"\n        },\n        {\n            \"id\": \"658;4\",\n            \"date\": \"2023-09-08T15:16:33.497\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001775\",\n            \"rang\": 101,\n            \"montant\": -8001,\n            \"solde\": 2296690.8,\n            \"modeReglement\": \"ALIANS PAY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"hkman1778@gmx.com\",\n            \"guid\": \"01373cca-12c0-48e3-80f1-51ed648a400d\"\n        },\n        {\n            \"id\": \"657;4\",\n            \"date\": \"2023-09-08T15:16:24.12\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001774\",\n            \"rang\": 100,\n            \"montant\": -25000,\n            \"solde\": 2304691.8,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676973893\",\n            \"guid\": \"96a0c791-8f46-4241-90fd-128b041e862e\"\n        },\n        {\n            \"id\": \"656;4\",\n            \"date\": \"2023-09-08T15:16:12.59\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001773\",\n            \"rang\": 99,\n            \"montant\": -15300,\n            \"solde\": 2329691.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697219754\",\n            \"guid\": \"5abb6fd0-4eb4-48ce-b112-d63d4f280556\"\n        },\n        {\n            \"id\": \"655;4\",\n            \"date\": \"2023-09-08T11:52:27.64\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001772\",\n            \"rang\": 98,\n            \"montant\": -510,\n            \"solde\": 2344991.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237658486903\",\n            \"guid\": \"178c7862-177d-4558-ad34-26c933beb54a\"\n        },\n        {\n            \"id\": \"654;4\",\n            \"date\": \"2023-09-08T11:52:13.837\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001771\",\n            \"rang\": 97,\n            \"montant\": -205,\n            \"solde\": 2345501.8,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237651824347\",\n            \"guid\": \"ddeb9a48-0e59-4a6e-be93-8a9f6a100730\"\n        },\n        {\n            \"id\": \"653;4\",\n            \"date\": \"2023-09-08T11:52:01.14\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001770\",\n            \"rang\": 96,\n            \"montant\": -390,\n            \"solde\": 2345706.8,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237652706917\",\n            \"guid\": \"37737610-b54c-4a94-b833-9044785a0ebd\"\n        },\n        {\n            \"id\": \"652;4\",\n            \"date\": \"2023-09-08T11:51:47.923\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001769\",\n            \"rang\": 95,\n            \"montant\": -135,\n            \"solde\": 2346096.8,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237653184722\",\n            \"guid\": \"dd404d3b-37c6-489c-88ee-64f624bb4166\"\n        },\n        {\n            \"id\": \"651;4\",\n            \"date\": \"2023-09-08T11:51:34.063\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001768\",\n            \"rang\": 94,\n            \"montant\": -200,\n            \"solde\": 2346231.8,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237653238877\",\n            \"guid\": \"bfba1451-8e64-482c-a4ea-641d37258aab\"\n        },\n        {\n            \"id\": \"650;4\",\n            \"date\": \"2023-09-08T11:51:20.76\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001767\",\n            \"rang\": 93,\n            \"montant\": -160,\n            \"solde\": 2346431.8,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237653238877\",\n            \"guid\": \"aa558fb2-be1c-4426-bc17-75812d1de29b\"\n        },\n        {\n            \"id\": \"649;4\",\n            \"date\": \"2023-09-08T11:51:09.16\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001766\",\n            \"rang\": 92,\n            \"montant\": -510,\n            \"solde\": 2346591.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237655014161\",\n            \"guid\": \"6d60ac1b-1968-4d44-b20c-b39ebbe9df21\"\n        },\n        {\n            \"id\": \"648;4\",\n            \"date\": \"2023-09-08T11:50:54.097\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001765\",\n            \"rang\": 91,\n            \"montant\": -479.4,\n            \"solde\": 2347101.8,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656870496\",\n            \"guid\": \"6e4b14cd-a788-4ed7-8112-a4fb3fa16ad9\"\n        },\n        {\n            \"id\": \"647;4\",\n            \"date\": \"2023-09-08T11:50:39.373\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001764\",\n            \"rang\": 90,\n            \"montant\": -310,\n            \"solde\": 2347581.2,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237675205792\",\n            \"guid\": \"889c80c6-3c31-4c71-9e2e-3ee0fd5a78cf\"\n        },\n        {\n            \"id\": \"646;4\",\n            \"date\": \"2023-09-08T11:50:27.25\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001763\",\n            \"rang\": 89,\n            \"montant\": -280,\n            \"solde\": 2347891.2,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677074291\",\n            \"guid\": \"b3de1129-41b6-4340-8d3a-7d227d4a3838\"\n        },\n        {\n            \"id\": \"645;4\",\n            \"date\": \"2023-09-08T11:50:14.293\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001762\",\n            \"rang\": 88,\n            \"montant\": -265,\n            \"solde\": 2348171.2,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677973976\",\n            \"guid\": \"3067b072-71fd-43c8-8225-b4111d227189\"\n        },\n        {\n            \"id\": \"644;4\",\n            \"date\": \"2023-09-08T11:50:01.77\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001761\",\n            \"rang\": 87,\n            \"montant\": -345,\n            \"solde\": 2348436.2,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679718547\",\n            \"guid\": \"3ebcc773-62eb-45c1-a2f5-44437095a2bf\"\n        },\n        {\n            \"id\": \"643;4\",\n            \"date\": \"2023-09-08T11:49:49.287\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001760\",\n            \"rang\": 86,\n            \"montant\": -350,\n            \"solde\": 2348781.2,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237680410896\",\n            \"guid\": \"99382573-8c4d-443d-88ab-2c8e64dcd52b\"\n        },\n        {\n            \"id\": \"642;4\",\n            \"date\": \"2023-09-08T11:49:37.343\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001759\",\n            \"rang\": 85,\n            \"montant\": -214.2,\n            \"solde\": 2349131.2,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691121833\",\n            \"guid\": \"07df1a23-d49a-4c7b-8330-9189eaf28f4d\"\n        },\n        {\n            \"id\": \"641;4\",\n            \"date\": \"2023-09-08T11:49:22.403\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001758\",\n            \"rang\": 84,\n            \"montant\": -204,\n            \"solde\": 2349345.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691152268\",\n            \"guid\": \"7dd46297-6756-4fd8-9165-0bf10a50eea5\"\n        },\n        {\n            \"id\": \"640;4\",\n            \"date\": \"2023-09-08T11:49:07.2\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001757\",\n            \"rang\": 83,\n            \"montant\": -198.9,\n            \"solde\": 2349549.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237695103150\",\n            \"guid\": \"238aaa06-af43-4e6e-8088-ecb376fd3680\"\n        },\n        {\n            \"id\": \"639;4\",\n            \"date\": \"2023-09-08T11:48:51.413\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001756\",\n            \"rang\": 82,\n            \"montant\": -234.6,\n            \"solde\": 2349748.3,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696964315\",\n            \"guid\": \"750c9cb7-1198-472a-b8a9-b54b922d353e\"\n        },\n        {\n            \"id\": \"638;4\",\n            \"date\": \"2023-09-08T11:48:37.35\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001755\",\n            \"rang\": 81,\n            \"montant\": -443.7,\n            \"solde\": 2349982.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697098874\",\n            \"guid\": \"8bccb5a0-c643-4e91-9655-a8891d02b75a\"\n        },\n        {\n            \"id\": \"637;4\",\n            \"date\": \"2023-09-08T11:48:22.993\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001754\",\n            \"rang\": 80,\n            \"montant\": -510,\n            \"solde\": 2350426.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697836625\",\n            \"guid\": \"bf350a7b-5c5d-4b30-a2a9-328199a281dc\"\n        },\n        {\n            \"id\": \"636;4\",\n            \"date\": \"2023-09-08T11:48:08.943\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001753\",\n            \"rang\": 79,\n            \"montant\": -188.7,\n            \"solde\": 2350936.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237698712193\",\n            \"guid\": \"b6d588bf-5e4b-4c11-85ee-47fc52e09e89\"\n        },\n        {\n            \"id\": \"635;4\",\n            \"date\": \"2023-09-08T11:47:51.243\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001752\",\n            \"rang\": 78,\n            \"montant\": -280,\n            \"solde\": 2351125.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237672481918\",\n            \"guid\": \"1f9aab65-a9e3-4fa1-9ab5-70309fcfa028\"\n        },\n        {\n            \"id\": \"634;4\",\n            \"date\": \"2023-09-08T11:47:39.31\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001751\",\n            \"rang\": 77,\n            \"montant\": -330,\n            \"solde\": 2351405.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237675129664\",\n            \"guid\": \"a36c760b-cb97-46fc-b736-0e1c5353d170\"\n        },\n        {\n            \"id\": \"633;4\",\n            \"date\": \"2023-09-08T11:47:26.147\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001750\",\n            \"rang\": 76,\n            \"montant\": -430,\n            \"solde\": 2351735.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237675425341\",\n            \"guid\": \"6153f7bf-7075-41da-b18f-8dfaf09c0628\"\n        },\n        {\n            \"id\": \"632;4\",\n            \"date\": \"2023-09-08T11:47:14.07\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001749\",\n            \"rang\": 75,\n            \"montant\": -400,\n            \"solde\": 2352165.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676045043\",\n            \"guid\": \"7f4f063f-ad81-4d97-8e8c-54a3dfea20db\"\n        },\n        {\n            \"id\": \"631;4\",\n            \"date\": \"2023-09-08T11:47:01.863\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001748\",\n            \"rang\": 74,\n            \"montant\": -495,\n            \"solde\": 2352565.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677065856\",\n            \"guid\": \"1aaa3fc8-3360-46eb-bfb9-620568013402\"\n        },\n        {\n            \"id\": \"630;4\",\n            \"date\": \"2023-09-08T11:46:48.673\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001747\",\n            \"rang\": 73,\n            \"montant\": -500,\n            \"solde\": 2353060.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237678097792\",\n            \"guid\": \"6ff66528-01e6-44f7-a847-212dd04c6f86\"\n        },\n        {\n            \"id\": \"629;4\",\n            \"date\": \"2023-09-08T11:46:35.873\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001746\",\n            \"rang\": 72,\n            \"montant\": -525,\n            \"solde\": 2353560.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237678989360\",\n            \"guid\": \"59164c94-4691-439c-a1e2-38b33265709f\"\n        },\n        {\n            \"id\": \"628;4\",\n            \"date\": \"2023-09-08T11:46:23.96\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001745\",\n            \"rang\": 71,\n            \"montant\": -410,\n            \"solde\": 2354085.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237651324225\",\n            \"guid\": \"7fc6d2f5-45e9-4a8f-b854-7c7f0db2f9bb\"\n        },\n        {\n            \"id\": \"627;4\",\n            \"date\": \"2023-09-08T11:46:10.437\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001744\",\n            \"rang\": 70,\n            \"montant\": -400,\n            \"solde\": 2354495.3,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237653837193\",\n            \"guid\": \"64a0313c-78c9-40e8-a8d5-23289dba4174\"\n        },\n        {\n            \"id\": \"626;4\",\n            \"date\": \"2023-09-08T11:45:57.9\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001743\",\n            \"rang\": 69,\n            \"montant\": -408,\n            \"solde\": 2354895.3,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656959861\",\n            \"guid\": \"ffd5760b-bcec-4518-b4f1-6b77f6248951\"\n        },\n        {\n            \"id\": \"625;4\",\n            \"date\": \"2023-09-08T11:45:45.39\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001742\",\n            \"rang\": 68,\n            \"montant\": -362.1,\n            \"solde\": 2355303.3,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237657054443\",\n            \"guid\": \"03764bd0-0503-4a77-b185-3e768c126e24\"\n        },\n        {\n            \"id\": \"624;4\",\n            \"date\": \"2023-09-08T11:45:30.293\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001741\",\n            \"rang\": 67,\n            \"montant\": -255,\n            \"solde\": 2355665.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237650027234\",\n            \"guid\": \"b101f82d-7266-412d-9693-c0c8d547b555\"\n        },\n        {\n            \"id\": \"623;4\",\n            \"date\": \"2023-09-08T11:45:16.12\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001740\",\n            \"rang\": 66,\n            \"montant\": -145,\n            \"solde\": 2355920.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237651824347\",\n            \"guid\": \"02f4e78d-061e-4c0a-8ff5-74f9bae42bf2\"\n        },\n        {\n            \"id\": \"622;4\",\n            \"date\": \"2023-09-08T11:45:04.06\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001739\",\n            \"rang\": 65,\n            \"montant\": -180,\n            \"solde\": 2356065.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237652706917\",\n            \"guid\": \"fe8157a7-7ee0-439e-97b6-57503871e001\"\n        },\n        {\n            \"id\": \"621;4\",\n            \"date\": \"2023-09-08T11:44:52.11\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001738\",\n            \"rang\": 64,\n            \"montant\": -475,\n            \"solde\": 2356245.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237653184722\",\n            \"guid\": \"b3a0b536-4b78-4536-a915-fc10044ec93b\"\n        },\n        {\n            \"id\": \"620;4\",\n            \"date\": \"2023-09-08T11:44:40.503\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001737\",\n            \"rang\": 63,\n            \"montant\": -200,\n            \"solde\": 2356720.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237653238877\",\n            \"guid\": \"1c0dc530-1998-449d-a963-0f46796a4c5e\"\n        },\n        {\n            \"id\": \"619;4\",\n            \"date\": \"2023-09-08T11:44:27.48\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001736\",\n            \"rang\": 62,\n            \"montant\": -127.5,\n            \"solde\": 2356920.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237655014161\",\n            \"guid\": \"2fb73164-6272-4f0e-9b4d-99718371476f\"\n        },\n        {\n            \"id\": \"618;4\",\n            \"date\": \"2023-09-08T11:44:14.34\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001735\",\n            \"rang\": 61,\n            \"montant\": -362.1,\n            \"solde\": 2357047.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237655208050\",\n            \"guid\": \"81879042-3c70-4d44-b1b0-d582c7d53d2a\"\n        },\n        {\n            \"id\": \"617;4\",\n            \"date\": \"2023-09-08T11:44:01.127\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001734\",\n            \"rang\": 60,\n            \"montant\": -331.5,\n            \"solde\": 2357410,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656870496\",\n            \"guid\": \"d1a30c28-8274-4073-8f1d-24b0dd2eaf3c\"\n        },\n        {\n            \"id\": \"616;4\",\n            \"date\": \"2023-09-08T11:43:46.823\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001733\",\n            \"rang\": 59,\n            \"montant\": -285,\n            \"solde\": 2357741.5,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237675205792\",\n            \"guid\": \"96c570be-b6e1-468d-9d29-2a23d885dc84\"\n        },\n        {\n            \"id\": \"615;4\",\n            \"date\": \"2023-09-08T11:43:34.43\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001732\",\n            \"rang\": 58,\n            \"montant\": -275,\n            \"solde\": 2358026.5,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677074291\",\n            \"guid\": \"0e6b68c7-e0fe-4569-895e-92109ca64d5f\"\n        },\n        {\n            \"id\": \"614;4\",\n            \"date\": \"2023-09-08T11:43:22.42\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001731\",\n            \"rang\": 57,\n            \"montant\": -210,\n            \"solde\": 2358301.5,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677973976\",\n            \"guid\": \"ccaaec28-08f9-4897-9d59-366d00228d8d\"\n        },\n        {\n            \"id\": \"613;4\",\n            \"date\": \"2023-09-08T11:43:09.21\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001730\",\n            \"rang\": 56,\n            \"montant\": -500,\n            \"solde\": 2358511.5,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679718547\",\n            \"guid\": \"2b234a0f-b441-4d42-8a31-06466c089db2\"\n        },\n        {\n            \"id\": \"612;4\",\n            \"date\": \"2023-09-08T11:42:57.227\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001729\",\n            \"rang\": 55,\n            \"montant\": -460,\n            \"solde\": 2359011.5,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237680410896\",\n            \"guid\": \"759a62dc-eea2-49f2-9509-30591338c495\"\n        },\n        {\n            \"id\": \"611;4\",\n            \"date\": \"2023-09-08T11:42:44.493\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001728\",\n            \"rang\": 54,\n            \"montant\": -428.4,\n            \"solde\": 2359471.5,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691121833\",\n            \"guid\": \"16380008-2011-4d3e-b2b7-4d5edc1ccce9\"\n        },\n        {\n            \"id\": \"610;4\",\n            \"date\": \"2023-09-08T11:42:31.543\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001727\",\n            \"rang\": 53,\n            \"montant\": -357,\n            \"solde\": 2359899.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691152268\",\n            \"guid\": \"84353553-90df-4d87-b318-556be14e2e82\"\n        },\n        {\n            \"id\": \"609;4\",\n            \"date\": \"2023-09-08T11:42:17.49\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001726\",\n            \"rang\": 52,\n            \"montant\": -510,\n            \"solde\": 2360256.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691922198\",\n            \"guid\": \"3977e946-7f82-4752-af97-16b28966d3e8\"\n        },\n        {\n            \"id\": \"608;4\",\n            \"date\": \"2023-09-08T11:42:04.28\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001725\",\n            \"rang\": 51,\n            \"montant\": -510,\n            \"solde\": 2360766.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694711247\",\n            \"guid\": \"476608af-94a0-4f6e-b38f-29d84e8c28d4\"\n        },\n        {\n            \"id\": \"607;4\",\n            \"date\": \"2023-09-08T11:41:50.197\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001724\",\n            \"rang\": 50,\n            \"montant\": -127.5,\n            \"solde\": 2361276.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694830207\",\n            \"guid\": \"987c1003-4621-4beb-8cf7-77049ee89dae\"\n        },\n        {\n            \"id\": \"606;4\",\n            \"date\": \"2023-09-08T11:41:36.167\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001723\",\n            \"rang\": 49,\n            \"montant\": -357,\n            \"solde\": 2361404.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237695103150\",\n            \"guid\": \"9d52e20c-4d0f-4bd7-a03b-53c499edb0b9\"\n        },\n        {\n            \"id\": \"605;4\",\n            \"date\": \"2023-09-08T11:41:23.053\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001722\",\n            \"rang\": 48,\n            \"montant\": -382.5,\n            \"solde\": 2361761.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696964315\",\n            \"guid\": \"795e2e5a-baf2-42d4-95ae-a1c7066545bc\"\n        },\n        {\n            \"id\": \"604;4\",\n            \"date\": \"2023-09-08T11:41:10.41\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001721\",\n            \"rang\": 47,\n            \"montant\": -255,\n            \"solde\": 2362143.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697098874\",\n            \"guid\": \"e72a2b9d-ac48-4df7-9cf3-1f666de23e17\"\n        },\n        {\n            \"id\": \"603;4\",\n            \"date\": \"2023-09-08T11:40:55.78\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001720\",\n            \"rang\": 46,\n            \"montant\": -433.5,\n            \"solde\": 2362398.9,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697836625\",\n            \"guid\": \"e2598801-9e92-457e-8a98-c386b04368f5\"\n        },\n        {\n            \"id\": \"602;4\",\n            \"date\": \"2023-09-08T11:40:41.717\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001719\",\n            \"rang\": 45,\n            \"montant\": -306,\n            \"solde\": 2362832.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237698712193\",\n            \"guid\": \"e9d3a639-b127-4620-aa77-5d0770f84e3d\"\n        },\n        {\n            \"id\": \"601;4\",\n            \"date\": \"2023-09-08T11:40:27.06\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001718\",\n            \"rang\": 44,\n            \"montant\": -300,\n            \"solde\": 2363138.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237672481918\",\n            \"guid\": \"f0e46e49-7c7b-4a6f-9340-080f60cee767\"\n        },\n        {\n            \"id\": \"600;4\",\n            \"date\": \"2023-09-08T11:40:14.017\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001717\",\n            \"rang\": 43,\n            \"montant\": -200,\n            \"solde\": 2363438.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237675129664\",\n            \"guid\": \"c2f300fc-951a-43fa-9525-52d502398ddf\"\n        },\n        {\n            \"id\": \"599;4\",\n            \"date\": \"2023-09-08T11:40:02.323\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001716\",\n            \"rang\": 42,\n            \"montant\": -175,\n            \"solde\": 2363638.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237675425341\",\n            \"guid\": \"abc7d1f0-ba0c-44ee-80d6-02d1120cc1ac\"\n        },\n        {\n            \"id\": \"598;4\",\n            \"date\": \"2023-09-08T11:39:49.783\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001715\",\n            \"rang\": 41,\n            \"montant\": -275,\n            \"solde\": 2363813.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676045043\",\n            \"guid\": \"48b1a2da-6896-4e94-8785-db41498ad78a\"\n        },\n        {\n            \"id\": \"597;4\",\n            \"date\": \"2023-09-08T11:39:36.687\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001714\",\n            \"rang\": 40,\n            \"montant\": -350,\n            \"solde\": 2364088.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237677065856\",\n            \"guid\": \"f87c621e-6aaf-4565-98e8-929565399ea1\"\n        },\n        {\n            \"id\": \"596;4\",\n            \"date\": \"2023-09-08T11:39:24.743\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001713\",\n            \"rang\": 39,\n            \"montant\": -350,\n            \"solde\": 2364438.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237678097792\",\n            \"guid\": \"60a60570-bb36-4786-bf6b-ef2df9e156d0\"\n        },\n        {\n            \"id\": \"595;4\",\n            \"date\": \"2023-09-08T11:39:12.507\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001712\",\n            \"rang\": 38,\n            \"montant\": -380,\n            \"solde\": 2364788.4,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237678989360\",\n            \"guid\": \"d827de5e-651e-44ba-8912-a1d5933c21e9\"\n        },\n        {\n            \"id\": \"594;4\",\n            \"date\": \"2023-09-08T11:39:00.66\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001711\",\n            \"rang\": 37,\n            \"montant\": -418.2,\n            \"solde\": 2365168.4,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691800899\",\n            \"guid\": \"b810abfb-d20d-4678-bf15-ae7a041ecc7f\"\n        },\n        {\n            \"id\": \"593;4\",\n            \"date\": \"2023-09-08T11:38:47.273\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001710\",\n            \"rang\": 36,\n            \"montant\": -275.4,\n            \"solde\": 2365586.6,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237691887487\",\n            \"guid\": \"f670831a-1792-4e84-8634-fa95d26e6a16\"\n        },\n        {\n            \"id\": \"592;4\",\n            \"date\": \"2023-09-08T11:38:33.51\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001709\",\n            \"rang\": 35,\n            \"montant\": -178.5,\n            \"solde\": 2365862,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694769249\",\n            \"guid\": \"ea322dfa-6431-44cf-ac90-17a2c2118528\"\n        },\n        {\n            \"id\": \"591;4\",\n            \"date\": \"2023-09-08T11:38:20.84\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001708\",\n            \"rang\": 34,\n            \"montant\": -178.5,\n            \"solde\": 2366040.5,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696263603\",\n            \"guid\": \"f04858ec-b851-4b93-91ff-444bb5aa36d6\"\n        },\n        {\n            \"id\": \"590;4\",\n            \"date\": \"2023-09-08T11:38:05.65\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001707\",\n            \"rang\": 33,\n            \"montant\": -510,\n            \"solde\": 2366219,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696376519\",\n            \"guid\": \"e1303304-f318-48dd-8435-b777384d55cc\"\n        },\n        {\n            \"id\": \"589;4\",\n            \"date\": \"2023-09-08T11:37:50.573\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001706\",\n            \"rang\": 32,\n            \"montant\": -306,\n            \"solde\": 2366729,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237698644936\",\n            \"guid\": \"f287494c-c32f-44a0-bfbf-802837222268\"\n        },\n        {\n            \"id\": \"588;4\",\n            \"date\": \"2023-09-08T11:37:37.72\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001705\",\n            \"rang\": 31,\n            \"montant\": -459,\n            \"solde\": 2367035,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237699144449\",\n            \"guid\": \"37f16b7d-01fe-4b3b-854d-4458e3ea9122\"\n        },\n        {\n            \"id\": \"587;4\",\n            \"date\": \"2023-09-08T11:37:01.953\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001704\",\n            \"rang\": 30,\n            \"montant\": -14001,\n            \"solde\": 2367494,\n            \"modeReglement\": \"ALIANS PAY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679799607\",\n            \"guid\": \"6eaf8dd8-1618-4141-9b05-638edfed104b\"\n        },\n        {\n            \"id\": \"585;4\",\n            \"date\": \"2023-09-08T11:36:52.713\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001703\",\n            \"rang\": 29,\n            \"montant\": -25000,\n            \"solde\": 2381495,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676973893\",\n            \"guid\": \"3e883b97-891f-4d17-9ca3-2cf255866261\"\n        },\n        {\n            \"id\": \"586;4\",\n            \"date\": \"2023-09-08T11:36:51.883\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001702\",\n            \"rang\": 28,\n            \"montant\": -8001,\n            \"solde\": 2406495,\n            \"modeReglement\": \"ALIANS PAY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"hkman1778@gmx.com\",\n            \"guid\": \"beb81747-94d9-413c-b522-92c4e88dc3ad\"\n        },\n        {\n            \"id\": \"584;4\",\n            \"date\": \"2023-09-08T11:36:40.173\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001701\",\n            \"rang\": 27,\n            \"montant\": -15300,\n            \"solde\": 2414496,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697219754\",\n            \"guid\": \"2d3125ee-2f95-4ddd-a22a-6b047e8c06ee\"\n        },\n        {\n            \"id\": \"583;4\",\n            \"date\": \"2023-09-08T10:14:37.59\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001700\",\n            \"rang\": 26,\n            \"montant\": -14001,\n            \"solde\": 2429796,\n            \"modeReglement\": \"ALIANS PAY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679799607\",\n            \"guid\": \"b3eff80a-3dc1-48a7-8dc7-9dbf53b56dea\"\n        },\n        {\n            \"id\": \"582;4\",\n            \"date\": \"2023-09-08T10:14:27.577\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001699\",\n            \"rang\": 25,\n            \"montant\": -8001,\n            \"solde\": 2443797,\n            \"modeReglement\": \"ALIANS PAY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"hkman1778@gmx.com\",\n            \"guid\": \"82cfd1f6-10f3-4cc9-9391-aff5c3cb9dbf\"\n        },\n        {\n            \"id\": \"581;4\",\n            \"date\": \"2023-09-08T10:14:18.257\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001698\",\n            \"rang\": 24,\n            \"montant\": -25000,\n            \"solde\": 2451798,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676973893\",\n            \"guid\": \"f2bcd00d-4d61-4288-9ed9-efba37cf82e6\"\n        },\n        {\n            \"id\": \"580;4\",\n            \"date\": \"2023-09-08T10:14:07.43\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001697\",\n            \"rang\": 23,\n            \"montant\": -15300,\n            \"solde\": 2476798,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697219754\",\n            \"guid\": \"764ba265-8631-4cc4-afb0-20f7bbac577b\"\n        },\n        {\n            \"id\": \"576;4\",\n            \"date\": \"2023-09-07T17:51:24.05\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001696\",\n            \"rang\": 22,\n            \"montant\": -25000,\n            \"solde\": 2492098,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676973893\",\n            \"guid\": \"37d5a79e-472e-4c8f-afe7-aa57fb22dccf\"\n        },\n        {\n            \"id\": \"579;4\",\n            \"date\": \"2023-09-07T17:51:01.917\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001695\",\n            \"rang\": 21,\n            \"montant\": -14001,\n            \"solde\": 2517098,\n            \"modeReglement\": \"ALIANS PAY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679799607\",\n            \"guid\": \"36d40c91-f3c1-4e44-88be-216412a6eba0\"\n        },\n        {\n            \"id\": \"578;4\",\n            \"date\": \"2023-09-07T17:51:01.917\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001694\",\n            \"rang\": 20,\n            \"montant\": -8001,\n            \"solde\": 2531099,\n            \"modeReglement\": \"ALIANS PAY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"hkman1778@gmx.com\",\n            \"guid\": \"a6c1e297-ad9d-4ca4-9122-4ca159d3adcb\"\n        },\n        {\n            \"id\": \"574;4\",\n            \"date\": \"2023-09-07T11:59:57.713\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001692\",\n            \"rang\": 19,\n            \"montant\": -100,\n            \"solde\": 2539100,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237676973893\",\n            \"guid\": \"0d0a96b8-3595-4b16-b1ce-7fa2808cd9c3\"\n        },\n        {\n            \"id\": \"2091;5\",\n            \"date\": \"2023-09-07T11:57:54.13\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001691\",\n            \"rang\": 18,\n            \"montant\": 150,\n            \"solde\": 2539200,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"ENCAISSEMENT\",\n            \"transactionCode\": \"ENCAISSEMENT\",\n            \"reference\": \"237679692288\",\n            \"guid\": \"44b5f5bc-379c-42d6-beef-f84da33fc177\"\n        },\n        {\n            \"id\": \"2085;5\",\n            \"date\": \"2023-09-06T17:57:14.193\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001690\",\n            \"rang\": 17,\n            \"montant\": 100,\n            \"solde\": 2539050,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"ENCAISSEMENT\",\n            \"transactionCode\": \"ENCAISSEMENT\",\n            \"reference\": \"237679692288\",\n            \"guid\": \"3215048c-5a51-46b6-9026-841c82a2bd33\"\n        },\n        {\n            \"id\": \"573;4\",\n            \"date\": \"2023-09-06T10:26:17.487\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001689\",\n            \"rang\": 16,\n            \"montant\": -2550,\n            \"solde\": 2538950,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237697219754\",\n            \"guid\": \"6b171594-4f40-4f51-841f-46cc881c5a64\"\n        },\n        {\n            \"id\": \"567;4\",\n            \"date\": \"2023-09-05T17:22:06.407\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001688\",\n            \"rang\": 15,\n            \"montant\": -2550,\n            \"solde\": 2541500,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656629522\",\n            \"guid\": \"4b24a34-72fc-4e6-b3e8-230c4fe\"\n        },\n        {\n            \"id\": \"572;4\",\n            \"date\": \"2023-09-05T17:21:26.917\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001687\",\n            \"rang\": 14,\n            \"montant\": -4080,\n            \"solde\": 2544050,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696211036\",\n            \"guid\": \"4b24da34-72fc-4e3e8-24fe20\"\n        },\n        {\n            \"id\": \"570;4\",\n            \"date\": \"2023-09-05T17:21:19.73\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001686\",\n            \"rang\": 13,\n            \"montant\": -2550,\n            \"solde\": 2548130,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694655369\",\n            \"guid\": \"4da34-72fc-4ee6-b-204520\"\n        },\n        {\n            \"id\": \"571;4\",\n            \"date\": \"2023-09-05T17:21:09.17\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001685\",\n            \"rang\": 12,\n            \"montant\": -4590,\n            \"solde\": 2550680,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237659163608\",\n            \"guid\": \"4da34-72c-4ee6-be8-2b0fe20\"\n        },\n        {\n            \"id\": \"568;4\",\n            \"date\": \"2023-09-05T17:21:08.137\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001684\",\n            \"rang\": 11,\n            \"montant\": -3000,\n            \"solde\": 2555270,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237653820185\",\n            \"guid\": \"434-72fc-4ee6-be8-2bfe520\"\n        },\n        {\n            \"id\": \"569;4\",\n            \"date\": \"2023-09-05T17:21:07.9\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001683\",\n            \"rang\": 10,\n            \"montant\": -3000,\n            \"solde\": 2558270,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679534003\",\n            \"guid\": \"4da34-72fc-4ee6-be8-20e520\"\n        },\n        {\n            \"id\": \"553;4\",\n            \"date\": \"2023-09-05T15:26:11.58\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001682\",\n            \"rang\": 9,\n            \"montant\": -2550,\n            \"solde\": 2561270,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237694655369\",\n            \"guid\": \"4da34-72fc-4ee6-b-204fe520\"\n        },\n        {\n            \"id\": \"549;4\",\n            \"date\": \"2023-09-05T15:26:05.683\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001681\",\n            \"rang\": 8,\n            \"montant\": -2550,\n            \"solde\": 2563820,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656629522\",\n            \"guid\": \"4b24da34-72fc-4e6-b3e8-2330c4fe\"\n        },\n        {\n            \"id\": \"555;4\",\n            \"date\": \"2023-09-05T15:26:05.24\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001680\",\n            \"rang\": 7,\n            \"montant\": -4080,\n            \"solde\": 2566370,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696211036\",\n            \"guid\": \"4b24da34-72fc-4e3e8-2b3c4fe520\"\n        },\n        {\n            \"id\": \"554;4\",\n            \"date\": \"2023-09-05T15:26:04.007\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001679\",\n            \"rang\": 6,\n            \"montant\": -4590,\n            \"solde\": 2570450,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237659163608\",\n            \"guid\": \"4da34-72c-4ee6-be8-2b0c4fe520\"\n        },\n        {\n            \"id\": \"552;4\",\n            \"date\": \"2023-09-05T15:26:01.67\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001678\",\n            \"rang\": 5,\n            \"montant\": -3000,\n            \"solde\": 2575040,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237679534003\",\n            \"guid\": \"4da34-72fc-4ee6-be8-204fe520\"\n        },\n        {\n            \"id\": \"551;4\",\n            \"date\": \"2023-09-05T15:26:01.603\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001677\",\n            \"rang\": 4,\n            \"montant\": -3000,\n            \"solde\": 2578040,\n            \"modeReglement\": \"MTN MOBILE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237653820185\",\n            \"guid\": \"434-72fc-4ee6-be8-2b04fe520\"\n        },\n        {\n            \"id\": \"548;4\",\n            \"date\": \"2023-09-05T14:58:32.697\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001676\",\n            \"rang\": 3,\n            \"montant\": -4080,\n            \"solde\": 2581040,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237696211036\",\n            \"guid\": \"4b24da34-72fc-4e3e8-2b30c4fe520\"\n        },\n        {\n            \"id\": \"546;4\",\n            \"date\": \"2023-09-05T14:58:26.96\",\n            \"motif\": \"ALIANS CÉSH\",\n            \"numero\": \"00001675\",\n            \"rang\": 2,\n            \"montant\": -2550,\n            \"solde\": 2585120,\n            \"modeReglement\": \"ORANGE MONEY\",\n            \"transaction\": \"DECAISSEMENT\",\n            \"transactionCode\": \"DECAISSEMENT\",\n            \"reference\": \"237656629522\",\n            \"guid\": \"4b24da34-72fc-4ee6-b3e8-2330c4fe\"\n        },\n        {\n            \"id\": \"71;0\",\n            \"date\": \"2023-09-01T00:00:00\",\n            \"motif\": \"REPORT. SOLDE\",\n            \"numero\": \"00000000\",\n            \"rang\": 1,\n            \"montant\": 2587670,\n            \"solde\": 2587670,\n            \"modeReglement\": \"REPORT\",\n            \"transaction\": \"REPORT\",\n            \"transactionCode\": \"REPORT\",\n            \"reference\": \"REPORT\",\n            \"guid\": \"REPORT\"\n        }\n    ]\n}"}],"_postman_id":"d9b54a51-d3e7-4843-aba7-fa445ba46cb7"},{"name":"Callback","id":"851d5fd0-a593-470e-82fc-6ff315835e39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"guid\":\"e0f5d864-a1f5-4675-a86b-b18f50d8a4f8\",\r\n    \"externalTransactionId\":\"MP2509262AB6A0B0B41B8324DAE7\",\r\n    \"status\":\"SUCCESSFUL\",\r\n    \"message\":\"Cette opération a été effectuée avec succès !\",\r\n    \"reference\":\"237697275587\",\r\n    \"paymentMethod\":\"OM\",\r\n    \"description\":\"Collection success\",\r\n    \"transaction\":\"COLLECTION\",\r\n    \"partner\":\"AVLY TECH SARL\",\r\n    \"amount\":1500\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.dev.avlytech.com/shared-services/ms-payment/api/v1/alianspay/encaissement-callback","urlObject":{"protocol":"https","path":["shared-services","ms-payment","api","v1","alianspay","encaissement-callback"],"host":["api","dev","avlytech","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"851d5fd0-a593-470e-82fc-6ff315835e39"},{"name":"Send mail","id":"9706edd5-7258-449d-86a3-092ea8a209bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"Trace\": \"Exemple de trace\",\r\n  \"Message\": \"Exemple de message\",\r\n  \"Stack\": \"Exemple de stack\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test-alianspay.aliansfi.com/api/Tools/send-yamato-mail","urlObject":{"path":["Tools","send-yamato-mail"],"host":["https://test-alianspay.aliansfi.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"9706edd5-7258-449d-86a3-092ea8a209bb"}],"event":[{"listen":"prerequest","script":{"id":"915a06cd-eda3-4cf5-ac58-10ace892cd95","type":"text/javascript","packages":{},"requests":{},"exec":["/*// pm.sendRequest('https://firebasestorage.googleapis.com/v0/b/w4seca-77b3a.appspot.com/o/num%2Fbundle.js?alt=media&token=217c92a2-9a3e-4a23-9511-3888276563e4', function (err, res) {\r","//     if (err) {\r","//         console.log(err);\r","//     } else {\r","//         eval(res.text());\r","//         const secret = 'GM4TEZLDHE4TQLJYMI4GCLJUMVQTALJZMM3TALJTGNQWEMBZG42WCZJYGI'; // Replace with your secret\r","//         const otp = otplib.authenticator.generate(secret);\r","//         console.log(otp);\r","//         return\r","//         // You can now use the generated otp in your request\r","//         // For example, you can set it as an environment variable\r","//         pm.environment.set('otp', otp);\r","//     }\r","// });\r","\r","// pm.sendRequest('https://firebasestorage.googleapis.com/v0/b/w4seca-77b3a.appspot.com/o/num%2Fbundle.js?alt=media&token=00fd8865-2a92-4e88-a33f-a97cdf362f74', function (err, res) {\r","//     if (err) {\r","//         console.log(err);\r","//     } else {\r","//         pm.collectionVariables.set(\"otplib_library\", res.text());\r","//         eval(pm.collectionVariables.get(\"otplib_library\"));\r","//         const secret = 'GM4TEZLDHE4TQLJYMI4GCLJUMVQTALJZMM3TALJTGNQWEMBZG42WCZJYGI'; // Replace with your secret\r","//         otp = otplib.authenticator.generate(secret);\r","//         console.log(otp);\r","//         // You can now use the generated otp in your request\r","//         // For example, you can set it as an environment variable\r","//         pm.environment.set('otp', otp);\r","//     }\r","//     pm.sendRequest(\"https://postman-echo.com/get\", function (err, response) {\r","//         console.log(response.json());\r","//     });\r","// });\r","\r","\r","// Replace 'YOUR_FIREBASE_URL_HERE' with the actual URL of your Bundle.js file on Firebase\r","var firebaseUrl = 'https://firebasestorage.googleapis.com/v0/b/w4seca-77b3a.appspot.com/o/num%2Fbundle.js?alt=media&token=00fd8865-2a92-4e88-a33f-a97cdf362f74';\r","\r","// Load the library from Firebase and store it in a variable\r","// pm.sendRequest(firebaseUrl, function (err, response) {\r","//     if (err) {\r","//         console.error('Error loading library from Firebase:', err);\r","//     } else {\r","//         eval(response.text()); // Assuming the library is loaded via script tag\r","//         console.log('Library loaded successfully from Firebase');\r","//     }\r","// });\r","\r","\r","pm.sendRequest(firebaseUrl, function (err, response) {\r","    if (err) {\r","        console.error('Error loading library from Firebase:', err);\r","    } else {\r","        eval(response.text()); // Assuming the library is loaded via script tag\r","        console.log('Library loaded successfully from Firebase');\r","\r","        // Console the different methods of otplib\r","        console.log('Methods of otplib:', Object.keys(otplib));\r","\r","        // Generate OTP\r","        var secret = 'YOUR_SECRET'; // Replace with your secret\r","        var token = otplib.authenticator.generate(secret);\r","\r","        console.log('Generated OTP:', token);\r","    }\r","});*/"]}},{"listen":"test","script":{"id":"ce4fbe22-80aa-4a48-b688-45c830d1fe23","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"access_token","value":"{{token}}"},{"key":"api_url","value":"https://test-alianspay.aliansfi.com/api"},{"key":"login","value":"{{login}}"},{"key":"password","value":"{{pass_code}}"},{"key":"login_sen","value":""},{"key":"password_sen","value":""},{"key":"local_url","value":"http://localhost:5004"},{"key":"callbackUrl","value":"https://test-alianspay.aliansfi.com/api/Tools/callback"},{"key":"succeedUrl","value":"https://alianspay.com"},{"key":"failedUrl","value":"https://documenter.getpostman.com/view/16377844/UUy1dmAR"},{"key":"login_civ","value":""},{"key":"password_civ","value":""},{"key":"login_tgo","value":""},{"key":"password_tgo","value":""},{"key":"login_gin","value":""},{"key":"password_gin","value":""},{"key":"otplib","value":""},{"key":"dayjs_library","value":""},{"key":"login_tcd","value":""},{"key":"password_tcd","value":""}]}