{"info":{"_postman_id":"1c42610b-0d19-4a9a-b074-c6cf0a8f3219","name":"Checkout with Cenoa","description":"<html><head></head><body><h1 id=\"integration-guide\">Integration Guide</h1>\n<p>Checkout with Cenoa allows you to track each transfers your customers have made.</p>\n<h2 id=\"overview\">Overview</h2>\n<p>You can use the REST APIs to integrate Checkout with Cenoa into your platform.<br>Complete the integration by following the <a href=\"#step-by-step-guide\">Step By Step Guide</a> below.</p>\n<ol>\n<li><p>Map Cenoa user to your internal customer ID</p>\n</li>\n<li><p>By using REST APIs, track each transfer transaction your customers have made to your Cenoa account</p>\n</li>\n<li><p>Validate a user's order for checkout, or top up your internally managed wallet/account</p>\n</li>\n</ol>\n<blockquote>\n<p>Before you begin, please get in touch with us on <a href=\"mailto:partnerships@cenoa.com\">partnerships@cenoa.com</a> for enabling Checkout with Cenoa for your platform. </p>\n</blockquote>\n<h2 id=\"step-by-step-guide\">Step By Step Guide</h2>\n<h3 id=\"mapping-cenoa-user\">Mapping Cenoa User</h3>\n<p>1- On your checkout experience, display Cenoa as a payment option to the user. e.g;</p>\n<img src=\"https://content.pstmn.io/850ad0dc-463e-47bd-b383-44f9ce9bcf22/NmUyMDc1MGQtY2FkNC00ODc2LTk2ZTgtNmUxYWVkYmUzYjFjLnBuZw==\" width=\"479\" height=\"481\">\n\n<p>2- Ask the user if they already have an existing Cenoa account.</p>\n<p>3- If the answer is yes, then collect the phone number that is registered with their Cenoa account.</p>\n<blockquote>\n<p>Optional: Some developers who integrated Checkout with Cenoa into their platform, have implemented an extra validation step by sending an OTP SMS to ensure the added Cenoa account is authorized by the user. It is up to you to mimic the same approach or skip OTP SMS validation. </p>\n</blockquote>\n<p>4- Call <code>Get User Account</code> REST API to check if the phone number was already registered with a Cenoa user. See <a href=\"#09817467-f8f2-40b8-836f-c0498c514e1d\">details</a>.</p>\n<p>4a- If an existing Cenoa User; then store the Cenoa <code>userId</code> with your platform's user identifier.</p>\n<p>4b- If NOT an existing Cenoa User; then display the following QR code or a link in order for user to download Cenoa mobile app and create a new Cenoa user account.</p>\n<blockquote>\n<p><strong>Tips</strong> </p>\n</blockquote>\n<p>For <em>Step 4a</em>. Response body also has masked email address of the user. You may display the masked email and have the user recognize and verify it before completing the step.</p>\n<p>For <em>Step 4b</em>. Once the new Cenoa user account creation is completed, the user may be prompted to restart from the beginning step.</p>\n<h3 id=\"transactions\">Transactions</h3>\n<p>Each transfer can be retrieved by using <code>Get All Transactions</code> REST API. See <a href=\"#1fe8bc94-a927-4cba-9ddb-a2d0d1b54b19\">details</a>.</p>\n<h4 id=\"webhooks\">Webhooks</h4>\n<p>We haven't implemented webhook functionality yet for Checkout with Cenoa, but you can call the <code>Get All Transactions</code> REST API as required.</p>\n<p>Note that the REST APIs' rate limiting adequately meet your requirements regarding both frequency and delivery time.</p>\n<h2 id=\"setting-up-environment\">Setting Up Environment</h2>\n<p>Please set up your environment with following variables:</p>\n<p><code>url=https://api.cenoa.com</code></p>\n<p><code>apikey=[YOUR API KEY]</code></p>\n<p><code>apisecret=[YOUR API SECRET]</code></p>\n<h2 id=\"authorization\">Authorization</h2>\n<p>Check out <code>Scripts</code> tab in each folder to learn how to send your <code>apikey</code> and sign each REST API request with your <code>apisecret.</code></p>\n<p>Each request must include <code>apikey</code>, <code>payload</code>, and <code>signature</code> headers. The <code>payload</code> is a base64-encoded JSON string, and that JSON must contain a <code>timestamp</code> field in milliseconds. The <code>signature</code> is the HMAC-SHA512 hex digest of the base64 <code>payload</code>, signed with the API secret.</p>\n<p>The server validates requests in this order:</p>\n<ol>\n<li><p>It finds the matching key pair using <code>apikey</code>.</p>\n</li>\n<li><p>It recalculates the HMAC signature from the raw <code>payload</code> header and compares it with <code>signature</code>.</p>\n</li>\n<li><p>It decodes <code>payload</code>, parses the JSON, and reads <code>timestamp</code>.</p>\n</li>\n<li><p>It rejects the request unless the timestamp is no older than 5 minutes and not in the future.</p>\n</li>\n</ol>\n<h4 id=\"example-client-logic\">Example client logic:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">const obj = { timestamp: Date.now().toString()};\nconst payload = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(JSON.stringify(obj)));\nconst signature = CryptoJS.enc.Hex.stringify( CryptoJS.HmacSHA512(payload, apisecret));\n\n</code></pre>\n<h5 id=\"headers\">Headers:</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-markdown\">apikey: &lt;api-key&gt;\npayload: &lt;base64-encoded-json&gt;\nsignature: &lt;hmac-sha512-hex&gt;\n\n</code></pre>\n<p><strong>Important note:</strong> if the client machine clock is too far behind or ahead, the request will be rejected with <code>401</code>, so client/server time should be reasonably in sync.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Integration Guide","slug":"integration-guide"}],"owner":"21291635","collectionId":"1c42610b-0d19-4a9a-b074-c6cf0a8f3219","publishedId":"2sBXikpXNQ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-03-27T23:06:58.000Z"},"item":[{"name":"Get User Account","item":[{"name":"user","id":"21e7fafd-75bf-4706-9267-48e647e622fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":"{{url}}/ext/user?mobileNumber=905334573779","urlObject":{"path":["ext","user"],"host":["{{url}}"],"query":[{"key":"mobileNumber","value":"905334573779"}],"variable":[]}},"response":[{"id":"7b3a6439-5da6-44cb-8eb2-f7b4b39406ab","name":"[success] existing user","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":{"raw":"{{url}}/ext/user?mobileNumber=905334573778","host":["{{url}}"],"path":["ext","user"],"query":[{"key":"mobileNumber","value":"905334573778"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"194"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 24 Dec 2024 10:46:39 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-676a910f-14e0ed01291cc8fe0d9485f1"},{"key":"x-amzn-RequestId","value":"99370398-2b5d-4623-b37e-e9025e7ce209"},{"key":"x-amz-apigw-id","value":"DSuabExaDoEEpDA="},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 bad10a325a27114250a7d64ce1bcf6ac.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD66-C2"},{"key":"X-Amz-Cf-Id","value":"VzsmVQtzoqfMM6ccIx925Y50mOBv7iicrq7uinVNktfW8QyDeL5sEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": \"e5f74ee6-25dd-46d1-9478-559df1562c5b\",\n    \"cenoaWallet\": \"0x064F29bB15367f0b7e14625B6A24eD54f8FaA6e9\",\n    \"email\": \"a************r@gmail.com\",\n    \"emailVerificationStatus\": \"VERIFICATION_MAIL_SENT\"\n}"},{"id":"07f5a213-d2d6-43e3-b0b7-cac367441660","name":"[fail] user not found","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":{"raw":"{{url}}/ext/user?mobileNumber=905334573111","host":["{{url}}"],"path":["ext","user"],"query":[{"key":"mobileNumber","value":"905334573111"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"28"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 16 Dec 2024 20:32:35 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67608e63-264fe70774724ca33829bc88"},{"key":"x-amzn-RequestId","value":"08b40a54-a023-49a1-989a-951b4753ed24"},{"key":"x-amz-apigw-id","value":"C5svmF5UjoEEQBg="},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 164306530bbc61ceaaf3bdbab7918012.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD66-C2"},{"key":"X-Amz-Cf-Id","value":"Q1Ex-l5cX9zMDrSj74u71svkXtmQ7R02SSHOZiuSXeQd1fEa9LxlOg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User not found\"\n}"},{"id":"f1b9c984-a7c2-4f5b-9dcb-e7170d635c62","name":"[fail] unauthorized","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":{"raw":"{{url}}/ext/user?mobileNumber=905334573111","host":["{{url}}"],"path":["ext","user"],"query":[{"key":"mobileNumber","value":"905334573111"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"17"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 16 Dec 2024 20:35:52 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67608f28-01308b23111b319527605789"},{"key":"x-amzn-RequestId","value":"8608303b-3475-4ab8-ba38-f9873dfe3068"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"x-amzn-ErrorType","value":"AccessDeniedException"},{"key":"x-amz-apigw-id","value":"C5tOZEsqjoEEmsQ="},{"key":"Access-Control-Allow-Methods","value":"*"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 ec2068c87c2d80519a5753dcf9eaede6.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD66-C2"},{"key":"X-Amz-Cf-Id","value":"jJa7eD_bnRCHZ3kUXD_0m0HEKZRHdk1s7IgMkWUgDk88c1RYEoov7w=="}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"21e7fafd-75bf-4706-9267-48e647e622fb"}],"id":"09817467-f8f2-40b8-836f-c0498c514e1d","event":[{"listen":"prerequest","script":{"id":"d918db9b-4275-4235-aeca-ce1a8ef4d0e7","type":"text/javascript","exec":["const obj = {","    timestamp: Date.now().toString()","};","","const payload = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(JSON.stringify(obj)));","const signature = CryptoJS.enc.Hex.stringify(CryptoJS.HmacSHA512(payload, pm.environment.get(\"apisecret\")));","","pm.environment.set(\"payload\", payload);","pm.environment.set(\"signature\", signature);"]}},{"listen":"test","script":{"id":"ffbda5c8-892c-490a-bf35-4bd51624da39","type":"text/javascript","exec":[""]}}],"_postman_id":"09817467-f8f2-40b8-836f-c0498c514e1d","description":""},{"name":"Get All Transactions","item":[{"name":"transactions","id":"62727fc7-7c4b-46a0-85e7-78b4d37c108e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":"{{url}}/ext/transactions","urlObject":{"path":["ext","transactions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0b6119d9-7a90-4b89-a6c9-f2ae114a532d","name":"[success] w/ limit=3","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":{"raw":"{{url}}/ext/transactions?limit=3","host":["{{url}}"],"path":["ext","transactions"],"query":[{"key":"limit","value":"3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\":[\n        {\n            \"id\":\"1\",\n            \"createdAt\":1734925599,\n            \"userPhoneNumber\":\"+905551112244\",\n            \"totalAmount\":\"105.00\",\n            \"merchantFee\":\"5.00\"\n\n        },\n        {\n            \"id\":\"2\",\n            \"createdAt\":1733925699,\n            \"userPhoneNumber\":\"+905551112255\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        },\n        {\n            \"id\":\"3\",\n            \"createdAt\":1733525599,\n            \"userPhoneNumber\":\"+905551112266\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        }\n    ],\n    \"pagination\":{\n        \"count\":3,\n        \"nextPageKey\":\"ABCD1234\"\n    }\n}"},{"id":"0ef7587f-d739-4498-8a89-407ce86c8734","name":"[success] fetch next page","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":{"raw":"{{url}}/ext/transactions?limit=3&nextPageKey=ABCD1233","host":["{{url}}"],"path":["ext","transactions"],"query":[{"key":"limit","value":"3"},{"key":"nextPageKey","value":"ABCD1233"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\":[\n        {\n            \"id\":\"1\",\n            \"createdAt\":1734925599,\n            \"userPhoneNumber\":\"+905551112244\",\n            \"totalAmount\":\"105.00\",\n            \"merchantFee\":\"5.00\"\n\n        },\n        {\n            \"id\":\"2\",\n            \"createdAt\":1733925699,\n            \"userPhoneNumber\":\"+905551112255\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        },\n        {\n            \"id\":\"3\",\n            \"createdAt\":1733525599,\n            \"userPhoneNumber\":\"+905551112266\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        }\n    ],\n    \"pagination\":{\n        \"count\":3,\n        \"nextPageKey\":\"ABCD1234\"\n    }\n}"},{"id":"a3eef851-4291-4721-a0a4-45c9aa03cc2a","name":"[fail] w/ limit > 100","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":{"raw":"{{url}}/ext/transactions?limit=101","host":["{{url}}"],"path":["ext","transactions"],"query":[{"key":"limit","value":"101"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\":\"limit must not be greater than 100\"\n}"},{"id":"2318d18d-fc6c-4a51-801e-c5bc634bcb6e","name":"[success] w/ before=[TIMESTAMP]","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":{"raw":"{{url}}/ext/transactions?limit=3&before=1753525599","host":["{{url}}"],"path":["ext","transactions"],"query":[{"key":"limit","value":"3"},{"key":"before","value":"1753525599"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\":[\n        {\n            \"id\":\"1\",\n            \"createdAt\":1734925599,\n            \"userPhoneNumber\":\"+905551112244\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        },\n        {\n            \"id\":\"2\",\n            \"createdAt\":1733925699,\n            \"userPhoneNumber\":\"+905551112255\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        },\n        {\n            \"id\":\"3\",\n            \"createdAt\":1733525599,\n            \"userPhoneNumber\":\"+905551112266\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        }\n    ],\n    \"pagination\":{\n        \"count\":3,\n        \"nextPageKey\":\"ABCD1234\"\n    }\n}"},{"id":"fa4fbefe-5670-4c83-b54c-188530d98b9c","name":"[success] w/ after=[TIMESTAMP]","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":{"raw":"{{url}}/ext/transactions?limit=3&after=1703525599","host":["{{url}}"],"path":["ext","transactions"],"query":[{"key":"limit","value":"3"},{"key":"after","value":"1703525599"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\":[\n        {\n            \"id\":\"1\",\n            \"createdAt\":1734925599,\n            \"userPhoneNumber\":\"+905551112244\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        },\n        {\n            \"id\":\"2\",\n            \"createdAt\":1733925699,\n            \"userPhoneNumber\":\"+905551112255\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        },\n        {\n            \"id\":\"3\",\n            \"createdAt\":1733525599,\n            \"userPhoneNumber\":\"+905551112266\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        }\n    ],\n    \"pagination\":{\n        \"count\":3,\n        \"nextPageKey\":\"ABCD1234\"\n    }\n}"},{"id":"0c340427-a18e-4098-8cb0-d49d56fbbe23","name":"[success] w/ before=[TIMESTAMP] & after=[TIMESTAMP]","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":{"raw":"{{url}}/ext/transactions?limit=3&before=1753525599&after=1703525599","host":["{{url}}"],"path":["ext","transactions"],"query":[{"key":"limit","value":"3"},{"key":"before","value":"1753525599"},{"key":"after","value":"1703525599"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\":[\n        {\n            \"id\":\"1\",\n            \"createdAt\":1734925599,\n            \"userPhoneNumber\":\"+905551112244\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        },\n        {\n            \"id\":\"2\",\n            \"createdAt\":1733925699,\n            \"userPhoneNumber\":\"+905551112255\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        },\n        {\n            \"id\":\"3\",\n            \"createdAt\":1733525599,\n            \"userPhoneNumber\":\"+905551112266\",\n            \"totalAmount\":\"100.00\",\n            \"merchantFee\":\"5.00\"\n        }\n    ],\n    \"pagination\":{\n        \"count\":3,\n        \"nextPageKey\":\"ABCD1234\"\n    }\n}"},{"id":"f7d33cfe-846e-474e-9cf4-5617237b79e6","name":"[success] w/ mobileNumber","originalRequest":{"method":"GET","header":[{"key":"apikey","value":"{{apikey}}","type":"text"},{"key":"payload","value":"{{payload}}","type":"text"},{"key":"signature","value":"{{signature}}","type":"text"}],"url":{"raw":"{{url}}/ext/transactions?mobileNumber=905333591660","host":["{{url}}"],"path":["ext","transactions"],"query":[{"key":"mobileNumber","value":"905333591660"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"207"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 11 Dec 2025 20:27:37 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-693b2939-233914fb48eab8146ca4b16f"},{"key":"x-amzn-RequestId","value":"eac76be4-7419-4124-8d45-d21ccfd1cb0a"},{"key":"x-amz-apigw-id","value":"VcNg_GVvDoEEj3Q="},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 93bbc6688f0d24cc7122c5dfa105d524.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DUB56-P1"},{"key":"X-Amz-Cf-Id","value":"OtFj4tHhKZGdy1HjERtzSQUmNLbf406AdihmShLvJllwgYql_YvUIw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"a338c69d-656c-4fc3-bc77-55f49f402497\",\n            \"createdAt\": 1759162164,\n            \"userPhoneNumber\": \"+905333591660\",\n            \"totalAmount\": \"1.050000\",\n            \"merchantFee\": \"0.050000\"\n        }\n    ],\n    \"pagination\": {\n        \"nextPageKey\": null,\n        \"count\": 1\n    }\n}"}],"_postman_id":"62727fc7-7c4b-46a0-85e7-78b4d37c108e"}],"id":"1fe8bc94-a927-4cba-9ddb-a2d0d1b54b19","event":[{"listen":"prerequest","script":{"id":"9a0e6b05-0ed4-4d21-852e-200ee10ff860","type":"text/javascript","packages":{},"exec":["const obj = {","    timestamp: Date.now().toString()","};","","const payload = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(JSON.stringify(obj)));","const signature = CryptoJS.enc.Hex.stringify(CryptoJS.HmacSHA512(payload, pm.environment.get(\"apisecret\")));","","pm.environment.set(\"payload\", payload);","pm.environment.set(\"signature\", signature);"]}},{"listen":"test","script":{"id":"ba15f2c0-78e2-433b-9e64-ddcfa22bf363","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"1fe8bc94-a927-4cba-9ddb-a2d0d1b54b19","description":""}],"event":[{"listen":"prerequest","script":{"id":"b6482bb5-2f6b-4931-9c09-f6f15e57f897","type":"text/javascript","packages":{},"requests":{},"exec":["const obj = {","    timestamp: Date.now().toString()","};","","const payload = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(JSON.stringify(obj)));","const signature = CryptoJS.enc.Hex.stringify(CryptoJS.HmacSHA512(payload, pm.environment.get(\"apisecret\")));","","pm.environment.set(\"payload\", payload);","pm.environment.set(\"signature\", signature);"]}},{"listen":"test","script":{"id":"c133ac74-d5af-4c84-9fdc-4eea4a6733ac","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}]}